123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- --[[
- Script Name : agonized_essence9.lua
- Script Purpose : Waypoint Path for agonized_essence9.lua
- Script Author : Devn00b
- Script Date : 06/10/2020 02:07:45 PM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, -2.42, -0.09, -109.98, 2, 0)
- MovementLoopAddLocation(NPC, -2.4, -0.09, -106.53, 2, 0)
- MovementLoopAddLocation(NPC, 3.23, -0.09, -110.07, 2, 0)
- MovementLoopAddLocation(NPC, 0.44, -0.09, -112.05, 2, 0)
- MovementLoopAddLocation(NPC, 0.87, -0.09, -122.28, 2, 0)
- MovementLoopAddLocation(NPC, -3.53, 0.57, -117.33, 2, 0)
- MovementLoopAddLocation(NPC, -3.96, -0.09, -121.41, 2, 0)
- MovementLoopAddLocation(NPC, -15.68, -0.09, -122.7, 2, 0)
- MovementLoopAddLocation(NPC, -13.61, -0.09, -122.96, 2, 0)
- MovementLoopAddLocation(NPC, -14.51, -0.09, -105.31, 2, 0)
- MovementLoopAddLocation(NPC, -14.52, -0.09, -106.04, 2, 0)
- MovementLoopAddLocation(NPC, 1.99, -0.09, -106.25, 2, 0)
- MovementLoopAddLocation(NPC, -3.97, -0.09, -121.98, 2, 0)
- MovementLoopAddLocation(NPC, -14.71, -0.09, -113.53, 2, 0)
- MovementLoopAddLocation(NPC, -3.01, -0.09, -106.28, 2, 0)
- MovementLoopAddLocation(NPC, -0.95, -0.09, -122.52, 2, 0)
- MovementLoopAddLocation(NPC, -3.01, -0.09, -106.28, 2, 0)
- MovementLoopAddLocation(NPC, -14.71, -0.09, -113.53, 2, 0)
- MovementLoopAddLocation(NPC, -3.97, -0.09, -121.98, 2, 0)
- MovementLoopAddLocation(NPC, 1.99, -0.09, -106.25, 2, 0)
- MovementLoopAddLocation(NPC, -14.52, -0.09, -106.04, 2, 0)
- MovementLoopAddLocation(NPC, -14.51, -0.09, -105.31, 2, 0)
- MovementLoopAddLocation(NPC, -13.61, -0.09, -122.96, 2, 0)
- MovementLoopAddLocation(NPC, -15.68, -0.09, -122.7, 2, 0)
- MovementLoopAddLocation(NPC, -3.96, -0.09, -121.41, 2, 0)
- MovementLoopAddLocation(NPC, -3.53, 0.57, -117.33, 2, 0)
- MovementLoopAddLocation(NPC, 0.87, -0.09, -122.28, 2, 0)
- MovementLoopAddLocation(NPC, 0.44, -0.09, -112.05, 2, 0)
- MovementLoopAddLocation(NPC, 3.23, -0.09, -110.07, 2, 0)
- MovementLoopAddLocation(NPC, -2.4, -0.09, -106.53, 2, 0)
- MovementLoopAddLocation(NPC, -2.42, -0.09, -109.98, 2, 0)
- end
|