123456789101112131415161718192021222324252627282930313233343536373839 |
- --[[
- Script Name : ilgar.lua
- Script Purpose : Waypoint Path for ilgar.lua
- Script Author : Devn00b
- Script Date : 04/11/2020 02:45:39 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, 469.14, -20.96, 194.86, 2, 0)
- MovementLoopAddLocation(NPC, 406.76, -20.87, 145.25, 2, 0)
- MovementLoopAddLocation(NPC, 421.86, -20.93, 168.96, 2, 0)
- MovementLoopAddLocation(NPC, 436.36, -20.26, 209.37, 2, 0)
- MovementLoopAddLocation(NPC, 452.7, -21.95, 242.39, 2, 0)
- MovementLoopAddLocation(NPC, 441.84, -21.92, 263.49, 2, 0)
- MovementLoopAddLocation(NPC, 455.55, -21.92, 244.74, 2, 0)
- MovementLoopAddLocation(NPC, 469.7, -21.06, 196.34, 2, 0)
- MovementLoopAddLocation(NPC, 455.55, -21.92, 244.74, 2, 0)
- MovementLoopAddLocation(NPC, 441.84, -21.92, 263.49, 2, 0)
- MovementLoopAddLocation(NPC, 452.7, -21.95, 242.39, 2, 0)
- MovementLoopAddLocation(NPC, 436.36, -20.26, 209.37, 2, 0)
- MovementLoopAddLocation(NPC, 421.86, -20.93, 168.96, 2, 0)
- MovementLoopAddLocation(NPC, 406.76, -20.87, 145.25, 2, 0)
- MovementLoopAddLocation(NPC, 469.14, -20.96, 194.86, 2, 0)
- end
|