--[[ Script Name : stowe.lua Script Purpose : Waypoint Path for stowe.lua Script Author : Devn00b Script Date : 04/15/2020 02:58:56 PM Script Notes : Locations collected from Live --]] dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua") function spawn(NPC) waypoints(NPC) SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange") end function hailed(NPC, Spawn) FaceTarget(NPC, Spawn) GenericRaceCheckHail(NPC, Spawn) end function InRange(NPC,Spawn) GenericRaceCheckCallout(NPC, Spawn) end function respawn(NPC) spawn(NPC) end function waypoints(NPC) MovementLoopAddLocation(NPC, 447.68, -20.55, -253.23, 2, 0) MovementLoopAddLocation(NPC, 405.21, -18.18, -280.89, 2, 0) MovementLoopAddLocation(NPC, 383.08, -17.53, -277.79, 2, 0) MovementLoopAddLocation(NPC, 364.96, -18.57, -276.32, 2, 0) MovementLoopAddLocation(NPC, 337.55, -19.1, -249.13, 2, 0) MovementLoopAddLocation(NPC, 339.65, -18.27, -237.73, 2, 0) MovementLoopAddLocation(NPC, 324.96, -22.93, -203.63, 2, 0) MovementLoopAddLocation(NPC, 317.24, -22.24, -182.83, 2, 0) MovementLoopAddLocation(NPC, 289.67, -19.39, -152.75, 2, 0) MovementLoopAddLocation(NPC, 283.16, -18.75, -144.17, 2, 0) MovementLoopAddLocation(NPC, 264.82, -18.73, -144.56, 2, 0) MovementLoopAddLocation(NPC, 255.31, -18.82, -114.03, 2, 0) MovementLoopAddLocation(NPC, 264.28, -18.76, -94.28, 2, 0) MovementLoopAddLocation(NPC, 262.38, -19.85, -67.33, 2, 0) MovementLoopAddLocation(NPC, 259.97, -20.93, -47.84, 2, 0) MovementLoopAddLocation(NPC, 263.42, -21, -32.59, 2, 0) MovementLoopAddLocation(NPC, 276.91, -21.35, -3.84, 2, 0) MovementLoopAddLocation(NPC, 297.91, -21.21, 3.3, 2, 0) MovementLoopAddLocation(NPC, 320.28, -21.36, -14.74, 2, 0) MovementLoopAddLocation(NPC, 316.12, -21.03, -24.32, 2, 0) MovementLoopAddLocation(NPC, 304, -21.27, -48.14, 2, 0) MovementLoopAddLocation(NPC, 306.45, -21.68, -64.88, 2, 0) MovementLoopAddLocation(NPC, 284.63, -19.26, -71.67, 2, 0) MovementLoopAddLocation(NPC, 306.45, -21.68, -64.88, 2, 0) MovementLoopAddLocation(NPC, 304, -21.27, -48.14, 2, 0) MovementLoopAddLocation(NPC, 316.12, -21.03, -24.32, 2, 0) MovementLoopAddLocation(NPC, 320.28, -21.36, -14.74, 2, 0) MovementLoopAddLocation(NPC, 297.91, -21.21, 3.3, 2, 0) MovementLoopAddLocation(NPC, 276.91, -21.35, -3.84, 2, 0) MovementLoopAddLocation(NPC, 263.42, -21, -32.59, 2, 0) MovementLoopAddLocation(NPC, 259.97, -20.93, -47.84, 2, 0) MovementLoopAddLocation(NPC, 262.38, -19.85, -67.33, 2, 0) MovementLoopAddLocation(NPC, 264.28, -18.76, -94.28, 2, 0) MovementLoopAddLocation(NPC, 255.31, -18.82, -114.03, 2, 0) MovementLoopAddLocation(NPC, 264.82, -18.73, -144.56, 2, 0) MovementLoopAddLocation(NPC, 283.16, -18.75, -144.17, 2, 0) MovementLoopAddLocation(NPC, 289.67, -19.39, -152.75, 2, 0) MovementLoopAddLocation(NPC, 317.24, -22.24, -182.83, 2, 0) MovementLoopAddLocation(NPC, 324.96, -22.93, -203.63, 2, 0) MovementLoopAddLocation(NPC, 339.65, -18.27, -237.73, 2, 0) MovementLoopAddLocation(NPC, 337.55, -19.1, -249.13, 2, 0) MovementLoopAddLocation(NPC, 364.96, -18.57, -276.32, 2, 0) MovementLoopAddLocation(NPC, 383.08, -17.53, -277.79, 2, 0) MovementLoopAddLocation(NPC, 405.21, -18.18, -280.89, 2, 0) MovementLoopAddLocation(NPC, 447.68, -20.55, -253.23, 2, 0) end