123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- --[[
- Script Name : agonized_essence8.lua
- Script Purpose : Waypoint Path for agonized_essence8.lua
- Script Author : Devn00b
- Script Date : 06/10/2020 02:07:38 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, -13.19, -0.09, -106.11, 2, 0)
- MovementLoopAddLocation(NPC, 2.5, -0.09, -109.78, 2, 0)
- MovementLoopAddLocation(NPC, 0.33, -0.09, -112.45, 2, 0)
- MovementLoopAddLocation(NPC, 1.39, 0.07, -146.76, 2, 0)
- MovementLoopAddLocation(NPC, 0.94, -0.09, -130.57, 2, 0)
- MovementLoopAddLocation(NPC, -4.12, 0.66, -116.44, 2, 0)
- MovementLoopAddLocation(NPC, -1.86, -0.09, -118.75, 2, 0)
- MovementLoopAddLocation(NPC, -13.97, -0.09, -119.58, 2, 0)
- MovementLoopAddLocation(NPC, 1.02, -0.09, -118.69, 2, 0)
- MovementLoopAddLocation(NPC, 1.65, -0.09, -105.5, 2, 0)
- MovementLoopAddLocation(NPC, -3.86, 0.66, -111.34, 2, 0)
- MovementLoopAddLocation(NPC, -2.2, -0.09, -109.5, 2, 0)
- MovementLoopAddLocation(NPC, -4.13, -0.09, -106.31, 2, 0)
- MovementLoopAddLocation(NPC, -10.9, -0.09, -109.27, 2, 0)
- MovementLoopAddLocation(NPC, -11.89, -0.09, -121.69, 2, 0)
- MovementLoopAddLocation(NPC, 1.8, -0.09, -116.75, 2, 0)
- MovementLoopAddLocation(NPC, -11.89, -0.09, -121.69, 2, 0)
- MovementLoopAddLocation(NPC, -10.9, -0.09, -109.27, 2, 0)
- MovementLoopAddLocation(NPC, -4.13, -0.09, -106.31, 2, 0)
- MovementLoopAddLocation(NPC, -2.2, -0.09, -109.5, 2, 0)
- MovementLoopAddLocation(NPC, -3.86, 0.66, -111.34, 2, 0)
- MovementLoopAddLocation(NPC, 1.65, -0.09, -105.5, 2, 0)
- MovementLoopAddLocation(NPC, 1.02, -0.09, -118.69, 2, 0)
- MovementLoopAddLocation(NPC, -13.97, -0.09, -119.58, 2, 0)
- MovementLoopAddLocation(NPC, -1.86, -0.09, -118.75, 2, 0)
- MovementLoopAddLocation(NPC, -4.12, 0.66, -116.44, 2, 0)
- MovementLoopAddLocation(NPC, 0.94, -0.09, -130.57, 2, 0)
- MovementLoopAddLocation(NPC, 1.39, 0.07, -146.76, 2, 0)
- MovementLoopAddLocation(NPC, 0.33, -0.09, -112.45, 2, 0)
- MovementLoopAddLocation(NPC, 2.5, -0.09, -109.78, 2, 0)
- MovementLoopAddLocation(NPC, -13.19, -0.09, -106.11, 2, 0)
- end
|