123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- --[[
- Script Name : restless_corpse3.lua
- Script Purpose : Waypoint Path for restless_corpse3.lua
- Script Author : Devn00b
- Script Date : 05/18/2020 11:13:29 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, 106.9, 6.87, -45.65, 2, 0)
- MovementLoopAddLocation(NPC, 122.99, 6.86, -62.66, 2, 0)
- MovementLoopAddLocation(NPC, 117.29, 6.9, -69.2, 2, 0)
- MovementLoopAddLocation(NPC, 122.98, 6.9, -79.74, 2, 0)
- MovementLoopAddLocation(NPC, 122.93, 7, -87.42, 2, 0)
- MovementLoopAddLocation(NPC, 113.11, 7, -88.3, 2, 0)
- MovementLoopAddLocation(NPC, 114.06, 7, -96.8, 2, 0)
- MovementLoopAddLocation(NPC, 123.28, 7, -97.97, 2, 0)
- MovementLoopAddLocation(NPC, 124.57, 7, -101.44, 2, 0)
- MovementLoopAddLocation(NPC, 114.96, 7, -99.3, 2, 0)
- MovementLoopAddLocation(NPC, 113.41, 7, -91.69, 2, 0)
- MovementLoopAddLocation(NPC, 113.06, 7, -88.36, 2, 0)
- MovementLoopAddLocation(NPC, 122.62, 7, -87.67, 2, 0)
- MovementLoopAddLocation(NPC, 122.18, 6.86, -79.23, 2, 0)
- MovementLoopAddLocation(NPC, 117.94, 6.88, -71.33, 2, 0)
- MovementLoopAddLocation(NPC, 124.17, 6.82, -63.04, 2, 0)
- MovementLoopAddLocation(NPC, 103.6, 6.87, -44.16, 2, 0)
- MovementLoopAddLocation(NPC, 97.79, 6.88, -47.14, 2, 0)
- MovementLoopAddLocation(NPC, 96.84, 6.89, -59, 2, 0)
- MovementLoopAddLocation(NPC, 89.06, 6.85, -64.74, 2, 0)
- MovementLoopAddLocation(NPC, 77.88, 6.88, -62.21, 2, 0)
- MovementLoopAddLocation(NPC, 72.34, 6.87, -58.71, 2, 0)
- MovementLoopAddLocation(NPC, 59.3, 6.98, -58.2, 2, 0)
- MovementLoopAddLocation(NPC, 72.34, 6.87, -58.71, 2, 0)
- MovementLoopAddLocation(NPC, 77.88, 6.88, -62.21, 2, 0)
- MovementLoopAddLocation(NPC, 89.06, 6.85, -64.74, 2, 0)
- MovementLoopAddLocation(NPC, 96.84, 6.89, -59, 2, 0)
- MovementLoopAddLocation(NPC, 97.79, 6.88, -47.14, 2, 0)
- MovementLoopAddLocation(NPC, 103.6, 6.87, -44.16, 2, 0)
- MovementLoopAddLocation(NPC, 124.17, 6.82, -63.04, 2, 0)
- MovementLoopAddLocation(NPC, 117.94, 6.88, -71.33, 2, 0)
- MovementLoopAddLocation(NPC, 122.18, 6.86, -79.23, 2, 0)
- MovementLoopAddLocation(NPC, 122.62, 7, -87.67, 2, 0)
- MovementLoopAddLocation(NPC, 113.06, 7, -88.36, 2, 0)
- MovementLoopAddLocation(NPC, 113.41, 7, -91.69, 2, 0)
- MovementLoopAddLocation(NPC, 114.96, 7, -99.3, 2, 0)
- MovementLoopAddLocation(NPC, 124.57, 7, -101.44, 2, 0)
- MovementLoopAddLocation(NPC, 123.28, 7, -97.97, 2, 0)
- MovementLoopAddLocation(NPC, 114.06, 7, -96.8, 2, 0)
- MovementLoopAddLocation(NPC, 113.11, 7, -88.3, 2, 0)
- MovementLoopAddLocation(NPC, 122.93, 7, -87.42, 2, 0)
- MovementLoopAddLocation(NPC, 122.98, 6.9, -79.74, 2, 0)
- MovementLoopAddLocation(NPC, 117.29, 6.9, -69.2, 2, 0)
- MovementLoopAddLocation(NPC, 122.99, 6.86, -62.66, 2, 0)
- MovementLoopAddLocation(NPC, 106.9, 6.87, -45.65, 2, 0)
- end
|