1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- --[[
- Script Name : restless_corpse2.lua
- Script Purpose : Waypoint Path for restless_corpse2.lua
- Script Author : Devn00b
- Script Date : 05/17/2020 02:57:59 AM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- waypoints(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 129.13, 7.38, -161.52, 2, 0)
- MovementLoopAddLocation(NPC, 128.69, 7, -125.84, 2, 0)
- MovementLoopAddLocation(NPC, 132.07, 7, -126.03, 2, 0)
- MovementLoopAddLocation(NPC, 132.65, 7, -123.32, 2, 0)
- MovementLoopAddLocation(NPC, 132.47, 7, -126.99, 2, 0)
- MovementLoopAddLocation(NPC, 128.1, 7, -126.86, 2, 0)
- MovementLoopAddLocation(NPC, 128.01, 6.92, -162.96, 2, 0)
- MovementLoopAddLocation(NPC, 133.28, 7.05, -170.28, 2, 0)
- MovementLoopAddLocation(NPC, 142.72, 6.96, -173.43, 2, 0)
- MovementLoopAddLocation(NPC, 148.89, 7.28, -171.99, 2, 0)
- MovementLoopAddLocation(NPC, 152.49, 6.79, -162.21, 2, 0)
- MovementLoopAddLocation(NPC, 152.84, 7.09, -139.26, 2, 0)
- MovementLoopAddLocation(NPC, 148.73, 7.02, -121.7, 2, 0)
- MovementLoopAddLocation(NPC, 139.24, 6.72, -114.66, 2, 0)
- MovementLoopAddLocation(NPC, 131.55, 7, -114.89, 2, 0)
- MovementLoopAddLocation(NPC, 130.79, 7, -100.98, 2, 0)
- MovementLoopAddLocation(NPC, 118.26, 7, -100.32, 2, 0)
- MovementLoopAddLocation(NPC, 113.36, 7, -92.83, 2, 0)
- MovementLoopAddLocation(NPC, 113.05, 7, -87.86, 2, 0)
- MovementLoopAddLocation(NPC, 122.57, 7, -87.38, 2, 0)
- MovementLoopAddLocation(NPC, 122.71, 6.9, -78.9, 2, 0)
- MovementLoopAddLocation(NPC, 117.28, 6.92, -71.21, 2, 0)
- MovementLoopAddLocation(NPC, 124.27, 6.82, -63.01, 2, 0)
- MovementLoopAddLocation(NPC, 106.83, 6.86, -45.04, 2, 0)
- MovementLoopAddLocation(NPC, 100.3, 6.89, -43.35, 2, 0)
- MovementLoopAddLocation(NPC, 95.13, 6.9, -48.53, 2, 0)
- MovementLoopAddLocation(NPC, 93.72, 6.9, -64.19, 2, 0)
- MovementLoopAddLocation(NPC, 95.13, 6.9, -48.53, 2, 0)
- MovementLoopAddLocation(NPC, 100.3, 6.89, -43.35, 2, 0)
- MovementLoopAddLocation(NPC, 106.83, 6.86, -45.04, 2, 0)
- MovementLoopAddLocation(NPC, 124.27, 6.82, -63.01, 2, 0)
- MovementLoopAddLocation(NPC, 117.28, 6.92, -71.21, 2, 0)
- MovementLoopAddLocation(NPC, 122.71, 6.9, -78.9, 2, 0)
- MovementLoopAddLocation(NPC, 122.57, 7, -87.38, 2, 0)
- MovementLoopAddLocation(NPC, 113.05, 7, -87.86, 2, 0)
- MovementLoopAddLocation(NPC, 113.36, 7, -92.83, 2, 0)
- MovementLoopAddLocation(NPC, 118.26, 7, -100.32, 2, 0)
- MovementLoopAddLocation(NPC, 130.79, 7, -100.98, 2, 0)
- MovementLoopAddLocation(NPC, 131.55, 7, -114.89, 2, 0)
- MovementLoopAddLocation(NPC, 139.24, 6.72, -114.66, 2, 0)
- MovementLoopAddLocation(NPC, 148.73, 7.02, -121.7, 2, 0)
- MovementLoopAddLocation(NPC, 152.84, 7.09, -139.26, 2, 0)
- MovementLoopAddLocation(NPC, 152.49, 6.79, -162.21, 2, 0)
- MovementLoopAddLocation(NPC, 148.89, 7.28, -171.99, 2, 0)
- MovementLoopAddLocation(NPC, 142.72, 6.96, -173.43, 2, 0)
- MovementLoopAddLocation(NPC, 133.28, 7.05, -170.28, 2, 0)
- MovementLoopAddLocation(NPC, 128.01, 6.92, -162.96, 2, 0)
- MovementLoopAddLocation(NPC, 128.1, 7, -126.86, 2, 0)
- MovementLoopAddLocation(NPC, 132.47, 7, -126.99, 2, 0)
- MovementLoopAddLocation(NPC, 132.65, 7, -123.32, 2, 0)
- MovementLoopAddLocation(NPC, 132.07, 7, -126.03, 2, 0)
- MovementLoopAddLocation(NPC, 128.69, 7, -125.84, 2, 0)
- MovementLoopAddLocation(NPC, 129.13, 7.38, -161.52, 2, 0)
- end
|