12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- --[[
- Script Name : SpawnScripts/Neriak/TTraeneXXxtar.lua
- Script Purpose : Waypoint Path for T'Traene X'Xxtar
- Script Author : Cynnar
- Script Date : 5/27/2018 12:00:00 AM
- Script Notes : <special-instructions>
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, -588.20, 27.79, 31.42, 2, 0)
- MovementLoopAddLocation(NPC, -596.21, 27.37, 41.73, 2, 0)
- MovementLoopAddLocation(NPC, -597.2, 27.37, 42.43, 2, 0)
- MovementLoopAddLocation(NPC, -609.81, 26.88, 46.76, 2, 0)
- MovementLoopAddLocation(NPC, -617.56, 27.07, 48.53, 2, 0)
- MovementLoopAddLocation(NPC, -623.43, 27.09, 51.9, 2, 0)
- MovementLoopAddLocation(NPC, -626.53, 27.02, 57.6, 2, 0)
- MovementLoopAddLocation(NPC, -628.94, 26.91, 63.36, 2, 0)
- MovementLoopAddLocation(NPC, -628.91, 26.5, 68.19, 2, 0)
- MovementLoopAddLocation(NPC, -626.27, 24.81, 73.79, 2, 0)
- MovementLoopAddLocation(NPC, -622.23, 23.41, 78.73, 2, 0)
- MovementLoopAddLocation(NPC, -615.02, 21.97, 85.66, 2, 0)
- MovementLoopAddLocation(NPC, -611.73, 21.8, 86.58, 2, 0)
- MovementLoopAddLocation(NPC, -607.35, 21.99, 86.46, 2, 0)
- MovementLoopAddLocation(NPC, -603.23, 22.47, 84.87, 2, 0)
- MovementLoopAddLocation(NPC, -591.62, 21.35, 85.68, 2, 0)
- MovementLoopAddLocation(NPC, -587.85, 21.03, 87.34, 2, 0)
- MovementLoopAddLocation(NPC, -584.84, 20.81, 90.41, 2, 0)
- MovementLoopAddLocation(NPC, -584.04, 20.56, 94.21, 2, 0)
- MovementLoopAddLocation(NPC, -585.42, 18.4, 110.7, 2, 0)
- MovementLoopAddLocation(NPC, -584.57, 18.26, 114.39, 2, 0)
- MovementLoopAddLocation(NPC, -585.56, 18.55, 118.01, 2, 0)
- MovementLoopAddLocation(NPC, -585.85, 19.12, 123.07, 2, 0)
- MovementLoopAddLocation(NPC, -586.48, 19.5, 130.38, 2, 0)
- MovementLoopAddLocation(NPC, -585.81, 20.14, 133.59, 2, 0)
- MovementLoopAddLocation(NPC, -589.61, 20.94, 140.6, 2, 0)
- MovementLoopAddLocation(NPC, -585.81, 20.14, 133.59, 2, 0)
- MovementLoopAddLocation(NPC, -586.48, 19.5, 130.38, 2, 0)
- MovementLoopAddLocation(NPC, -585.85, 19.12, 123.07, 2, 0)
- MovementLoopAddLocation(NPC, -585.56, 18.55, 118.01, 2, 0)
- MovementLoopAddLocation(NPC, -584.57, 18.26, 114.39, 2, 0)
- MovementLoopAddLocation(NPC, -585.42, 18.4, 110.7, 2, 0)
- MovementLoopAddLocation(NPC, -584.04, 20.56, 94.21, 2, 0)
- MovementLoopAddLocation(NPC, -584.84, 20.81, 90.41, 2, 0)
- MovementLoopAddLocation(NPC, -587.85, 21.03, 87.34, 2, 0)
- MovementLoopAddLocation(NPC, -591.62, 21.35, 85.68, 2, 0)
- MovementLoopAddLocation(NPC, -603.23, 22.47, 84.87, 2, 0)
- MovementLoopAddLocation(NPC, -607.35, 21.99, 86.46, 2, 0)
- MovementLoopAddLocation(NPC, -611.73, 21.8, 86.58, 2, 0)
- MovementLoopAddLocation(NPC, -615.02, 21.97, 85.66, 2, 0)
- MovementLoopAddLocation(NPC, -622.23, 23.41, 78.73, 2, 0)
- MovementLoopAddLocation(NPC, -626.27, 24.81, 73.79, 2, 0)
- MovementLoopAddLocation(NPC, -628.91, 26.5, 68.19, 2, 0)
- MovementLoopAddLocation(NPC, -628.94, 26.91, 63.36, 2, 0)
- MovementLoopAddLocation(NPC, -626.53, 27.02, 57.6, 2, 0)
- MovementLoopAddLocation(NPC, -623.43, 27.09, 51.9, 2, 0)
- MovementLoopAddLocation(NPC, -617.56, 27.07, 48.53, 2, 0)
- MovementLoopAddLocation(NPC, -609.81, 26.88, 46.76, 2, 0)
- MovementLoopAddLocation(NPC, -597.2, 27.37, 42.43, 2, 0)
- MovementLoopAddLocation(NPC, -596.21, 27.37, 41.73, 2, 0)
- MovementLoopAddLocation(NPC, -588.20, 27.79, 31.42, 2, 0)
- end
|