12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- --[[
- Script Name : ward.lua
- Script Purpose : Waypoint Path for ward.lua
- Script Author : Devn00b
- Script Date : 04/11/2020 07:14:21 PM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 516.21, -9.57, 127.12, 2, 0)
- MovementLoopAddLocation(NPC, 520.3, -9.56, 131.57, 2, 0)
- MovementLoopAddLocation(NPC, 528.81, -9.56, 132.14, 2, 0)
- MovementLoopAddLocation(NPC, 539.78, -9.56, 130.42, 2, 0)
- MovementLoopAddLocation(NPC, 546.81, -8.54, 130.56, 2, 0)
- MovementLoopAddLocation(NPC, 546.72, -6.55, 121.26, 2, 0)
- MovementLoopAddLocation(NPC, 541.75, -5.55, 121.25, 2, 0)
- MovementLoopAddLocation(NPC, 541.86, -3.5, 127.97, 2, 0)
- MovementLoopAddLocation(NPC, 530.14, -3.5, 128.28, 2, 0)
- MovementLoopAddLocation(NPC, 511.74, -3.48, 126.13, 2, 0)
- MovementLoopAddLocation(NPC, 530.14, -3.5, 128.28, 2, 0)
- MovementLoopAddLocation(NPC, 541.86, -3.5, 127.97, 2, 0)
- MovementLoopAddLocation(NPC, 541.75, -5.55, 121.25, 2, 0)
- MovementLoopAddLocation(NPC, 546.72, -6.55, 121.26, 2, 0)
- MovementLoopAddLocation(NPC, 546.81, -8.54, 130.56, 2, 0)
- MovementLoopAddLocation(NPC, 539.78, -9.56, 130.42, 2, 0)
- MovementLoopAddLocation(NPC, 528.81, -9.56, 132.14, 2, 0)
- MovementLoopAddLocation(NPC, 520.3, -9.56, 131.57, 2, 0)
- MovementLoopAddLocation(NPC, 516.21, -9.57, 127.12, 2, 0)
- end
|