123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- --[[
- Script Name : agonized_essence5_1.lua
- Script Purpose : Waypoint Path for agonized_essence5_1.lua
- Script Author : Devn00b
- Script Date : 06/10/2020 01:59:03 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, -12.65, -0.09, -86.13, 2, 0)
- MovementLoopAddLocation(NPC, -8.79, 0.66, -89.72, 2, 0)
- MovementLoopAddLocation(NPC, -11.93, -0.09, -86.77, 2, 0)
- MovementLoopAddLocation(NPC, -12.15, -0.09, -99.75, 2, 0)
- MovementLoopAddLocation(NPC, -15.68, -0.09, -101.2, 2, 0)
- MovementLoopAddLocation(NPC, -14.28, -0.09, -101.2, 2, 0)
- MovementLoopAddLocation(NPC, 1.07, -0.09, -94.78, 2, 0)
- MovementLoopAddLocation(NPC, 1.34, -0.09, -100.31, 2, 0)
- MovementLoopAddLocation(NPC, 2.52, -0.09, -101.1, 2, 0)
- MovementLoopAddLocation(NPC, -0.57, -0.09, -100.99, 2, 0)
- MovementLoopAddLocation(NPC, -0.35, -0.09, -85.75, 2, 0)
- MovementLoopAddLocation(NPC, -6.26, -0.09, -85.78, 2, 0)
- MovementLoopAddLocation(NPC, -6.39, 0.66, -88.6, 2, 0)
- MovementLoopAddLocation(NPC, -6.28, -0.09, -85.01, 2, 0)
- MovementLoopAddLocation(NPC, -2.49, -0.09, -88.05, 2, 0)
- MovementLoopAddLocation(NPC, -4.07, 0.66, -89.8, 2, 0)
- MovementLoopAddLocation(NPC, -1.9, -0.09, -87.55, 2, 0)
- MovementLoopAddLocation(NPC, 0.14, -0.09, -92.17, 2, 0)
- MovementLoopAddLocation(NPC, -3.49, 0.66, -92.27, 2, 0)
- MovementLoopAddLocation(NPC, 0.14, -0.09, -92.17, 2, 0)
- MovementLoopAddLocation(NPC, -1.9, -0.09, -87.55, 2, 0)
- MovementLoopAddLocation(NPC, -4.07, 0.66, -89.8, 2, 0)
- MovementLoopAddLocation(NPC, -2.49, -0.09, -88.05, 2, 0)
- MovementLoopAddLocation(NPC, -6.28, -0.09, -85.01, 2, 0)
- MovementLoopAddLocation(NPC, -6.39, 0.66, -88.6, 2, 0)
- MovementLoopAddLocation(NPC, -6.26, -0.09, -85.78, 2, 0)
- MovementLoopAddLocation(NPC, -0.35, -0.09, -85.75, 2, 0)
- MovementLoopAddLocation(NPC, -0.57, -0.09, -100.99, 2, 0)
- MovementLoopAddLocation(NPC, 2.52, -0.09, -101.1, 2, 0)
- MovementLoopAddLocation(NPC, 1.34, -0.09, -100.31, 2, 0)
- MovementLoopAddLocation(NPC, 1.07, -0.09, -94.78, 2, 0)
- MovementLoopAddLocation(NPC, -14.28, -0.09, -101.2, 2, 0)
- MovementLoopAddLocation(NPC, -15.68, -0.09, -101.2, 2, 0)
- MovementLoopAddLocation(NPC, -12.15, -0.09, -99.75, 2, 0)
- MovementLoopAddLocation(NPC, -11.93, -0.09, -86.77, 2, 0)
- MovementLoopAddLocation(NPC, -8.79, 0.66, -89.72, 2, 0)
- MovementLoopAddLocation(NPC, -12.65, -0.09, -86.13, 2, 0)
- end
|