1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- --[[
- Script Name : deathly_scarab9.lua
- Script Purpose : Waypoint Path for deathly_scarab9.lua
- Script Author : Auto Generated
- Script Date : 06/08/2020 12:57: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, -23.58, 6.82, -17.06, 2, 0)
- MovementLoopAddLocation(NPC, -15.81, 6.99, -24.92, 2, 0)
- MovementLoopAddLocation(NPC, -9.15, 6.84, -30.31, 2, 0)
- MovementLoopAddLocation(NPC, -0.53, 6.83, -21.25, 2, 0)
- MovementLoopAddLocation(NPC, -0.6, 6.99, -13.44, 2, 0)
- MovementLoopAddLocation(NPC, -11.63, 5.35, -4.36, 2, 0)
- MovementLoopAddLocation(NPC, -12.15, 4.55, 1.86, 2, 0)
- MovementLoopAddLocation(NPC, -8.06, 3.15, 9.27, 2, 0)
- MovementLoopAddLocation(NPC, 1.14, 1.85, 13.13, 2, 0)
- MovementLoopAddLocation(NPC, 8.49, 0.74, 8.89, 2, 0)
- MovementLoopAddLocation(NPC, 11.22, -0.04, 1.5, 2, 0)
- MovementLoopAddLocation(NPC, 25.3, -0.09, 0.71, 2, 0)
- MovementLoopAddLocation(NPC, 29.57, -0.07, 3.25, 2, 0)
- MovementLoopAddLocation(NPC, 37.45, 0.35, 1.9, 2, 0)
- MovementLoopAddLocation(NPC, 43.02, -0.22, -5.82, 2, 0)
- MovementLoopAddLocation(NPC, 43.72, -0.18, -15.88, 2, 0)
- MovementLoopAddLocation(NPC, 42.72, -0.18, -30.14, 2, 0)
- MovementLoopAddLocation(NPC, 43.72, -0.18, -15.88, 2, 0)
- MovementLoopAddLocation(NPC, 43.02, -0.22, -5.82, 2, 0)
- MovementLoopAddLocation(NPC, 37.45, 0.35, 1.9, 2, 0)
- MovementLoopAddLocation(NPC, 29.57, -0.07, 3.25, 2, 0)
- MovementLoopAddLocation(NPC, 25.3, -0.09, 0.71, 2, 0)
- MovementLoopAddLocation(NPC, 11.22, -0.04, 1.5, 2, 0)
- MovementLoopAddLocation(NPC, 8.49, 0.74, 8.89, 2, 0)
- MovementLoopAddLocation(NPC, 1.14, 1.85, 13.13, 2, 0)
- MovementLoopAddLocation(NPC, -8.06, 3.15, 9.27, 2, 0)
- MovementLoopAddLocation(NPC, -12.15, 4.55, 1.86, 2, 0)
- MovementLoopAddLocation(NPC, -11.63, 5.35, -4.36, 2, 0)
- MovementLoopAddLocation(NPC, -0.6, 6.99, -13.44, 2, 0)
- MovementLoopAddLocation(NPC, -0.53, 6.83, -21.25, 2, 0)
- MovementLoopAddLocation(NPC, -9.15, 6.84, -30.31, 2, 0)
- MovementLoopAddLocation(NPC, -15.81, 6.99, -24.92, 2, 0)
- MovementLoopAddLocation(NPC, -23.58, 6.82, -17.06, 2, 0)
- end
|