123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- --[[
- Script Name : dillon.lua
- Script Purpose : Waypoint Path for dillon.lua
- Script Author : Devn00b
- Script Date : 04/10/2020 01:06:06 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, 600.22, -18.07, 236.06, 2, 0)
- MovementLoopAddLocation(NPC, 592.73, -18.05, 237.94, 2, 0)
- MovementLoopAddLocation(NPC, 583.55, -17.95, 239.05, 2, 0)
- MovementLoopAddLocation(NPC, 568.26, -17.75, 240.55, 2, 0)
- MovementLoopAddLocation(NPC, 565.64, -17.72, 241.07, 2, 0)
- MovementLoopAddLocation(NPC, 560.76, -16.97, 228.14, 2, 0)
- MovementLoopAddLocation(NPC, 560.28, -15.13, 213.69, 2, 0)
- MovementLoopAddLocation(NPC, 612.83, -15.48, 205.11, 2, 0)
- MovementLoopAddLocation(NPC, 679.4, -19.38, 187.64, 2, 0)
- MovementLoopAddLocation(NPC, 680.54, -19.27, 192.39, 2, 0)
- MovementLoopAddLocation(NPC, 649.22, -17.95, 202.36, 2, 0)
- MovementLoopAddLocation(NPC, 611.57, -16.46, 211.89, 2, 0)
- MovementLoopAddLocation(NPC, 614.27, -16.46, 228.35, 2, 0)
- MovementLoopAddLocation(NPC, 622.97, -17.14, 227.34, 2, 0)
- MovementLoopAddLocation(NPC, 632.27, -17.14, 225.55, 2, 0)
- MovementLoopAddLocation(NPC, 665.54, -17.95, 215.73, 2, 0)
- MovementLoopAddLocation(NPC, 680.64, -17.95, 211.14, 2, 0)
- MovementLoopAddLocation(NPC, 665.54, -17.95, 215.73, 2, 0)
- MovementLoopAddLocation(NPC, 632.27, -17.14, 225.55, 2, 0)
- MovementLoopAddLocation(NPC, 622.97, -17.14, 227.34, 2, 0)
- MovementLoopAddLocation(NPC, 614.27, -16.46, 228.35, 2, 0)
- MovementLoopAddLocation(NPC, 611.57, -16.46, 211.89, 2, 0)
- MovementLoopAddLocation(NPC, 649.22, -17.95, 202.36, 2, 0)
- MovementLoopAddLocation(NPC, 680.54, -19.27, 192.39, 2, 0)
- MovementLoopAddLocation(NPC, 679.4, -19.38, 187.64, 2, 0)
- MovementLoopAddLocation(NPC, 612.83, -15.48, 205.11, 2, 0)
- MovementLoopAddLocation(NPC, 560.28, -15.13, 213.69, 2, 0)
- MovementLoopAddLocation(NPC, 560.76, -16.97, 228.14, 2, 0)
- MovementLoopAddLocation(NPC, 565.64, -17.72, 241.07, 2, 0)
- MovementLoopAddLocation(NPC, 568.26, -17.75, 240.55, 2, 0)
- MovementLoopAddLocation(NPC, 583.55, -17.95, 239.05, 2, 0)
- MovementLoopAddLocation(NPC, 592.73, -18.05, 237.94, 2, 0)
- MovementLoopAddLocation(NPC, 600.22, -18.07, 236.06, 2, 0)
- end
|