123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- --[[
- Script Name : grave_scorpius5.lua
- Script Purpose : Waypoint Path for grave_scorpius5.lua
- Script Author : Devn00b
- Script Date : 06/26/2020 04:15:15 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, 197.54, -6.94, -56.95, 2, 0)
- MovementLoopAddLocation(NPC, 214.59, -6.9, -56.05, 2, 0)
- MovementLoopAddLocation(NPC, 232.77, -6.45, -39.74, 2, 0)
- MovementLoopAddLocation(NPC, 245.04, -7, -39.48, 2, 0)
- MovementLoopAddLocation(NPC, 244.7, -7, -51.44, 2, 0)
- MovementLoopAddLocation(NPC, 237.23, -6.88, -61.05, 2, 0)
- MovementLoopAddLocation(NPC, 237.1, -6.86, -81.33, 2, 0)
- MovementLoopAddLocation(NPC, 246.61, -6.86, -80.72, 2, 0)
- MovementLoopAddLocation(NPC, 247.18, -6.86, -105.48, 2, 0)
- MovementLoopAddLocation(NPC, 235.11, -6.86, -105.88, 2, 0)
- MovementLoopAddLocation(NPC, 234.68, -6.86, -91.53, 2, 0)
- MovementLoopAddLocation(NPC, 222.12, -6.83, -92.14, 2, 0)
- MovementLoopAddLocation(NPC, 222.34, -6.32, -83.16, 2, 0)
- MovementLoopAddLocation(NPC, 216.89, -6.81, -76.86, 2, 0)
- MovementLoopAddLocation(NPC, 210.19, -6.81, -79.75, 2, 0)
- MovementLoopAddLocation(NPC, 208.44, -6.98, -90.24, 2, 0)
- MovementLoopAddLocation(NPC, 210.19, -6.81, -79.75, 2, 0)
- MovementLoopAddLocation(NPC, 216.89, -6.81, -76.86, 2, 0)
- MovementLoopAddLocation(NPC, 222.34, -6.32, -83.16, 2, 0)
- MovementLoopAddLocation(NPC, 222.12, -6.83, -92.14, 2, 0)
- MovementLoopAddLocation(NPC, 234.68, -6.86, -91.53, 2, 0)
- MovementLoopAddLocation(NPC, 235.11, -6.86, -105.88, 2, 0)
- MovementLoopAddLocation(NPC, 247.18, -6.86, -105.48, 2, 0)
- MovementLoopAddLocation(NPC, 246.61, -6.86, -80.72, 2, 0)
- MovementLoopAddLocation(NPC, 237.1, -6.86, -81.33, 2, 0)
- MovementLoopAddLocation(NPC, 237.23, -6.88, -61.05, 2, 0)
- MovementLoopAddLocation(NPC, 244.7, -7, -51.44, 2, 0)
- MovementLoopAddLocation(NPC, 245.04, -7, -39.48, 2, 0)
- MovementLoopAddLocation(NPC, 232.77, -6.45, -39.74, 2, 0)
- MovementLoopAddLocation(NPC, 214.59, -6.9, -56.05, 2, 0)
- MovementLoopAddLocation(NPC, 197.54, -6.94, -56.95, 2, 0)
- end
|