1234567891011121314151617181920212223242526272829303132333435363738394041 |
- --[[
- Script Name : SpawnScripts/QueensColony/aseasidefalcon432812.lua
- Script Purpose : Waypoint Path for aseasidefalcon432812.lua
- Script Author : Rylec
- Script Date : 04-19-2020 02:18:42
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 175.64, -0.52, 160.08, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 173.42, 0.29, 166.72, 2, 0)
- MovementLoopAddLocation(NPC, 173.13, 1.18, 175, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 165.29, 1.59, 174.16, 2, 0)
- MovementLoopAddLocation(NPC, 151.73, 2.11, 168.19, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 183.61, 1.98, 189.14, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 154.17, 1.07, 191.09, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 155.5, 0.6, 183.98, 2, 0)
- MovementLoopAddLocation(NPC, 161.55, -0.45, 168.69, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 163.25, 0.12, 171.86, 2, 0)
- MovementLoopAddLocation(NPC, 164.17, 0.52, 174.44, 2, 0)
- MovementLoopAddLocation(NPC, 181.62, 1.79, 191.31, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 169.55, 0.44, 182.43, 2, 0)
- MovementLoopAddLocation(NPC, 150.36, -0.46, 172.51, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 147.99, 0.52, 184.19, 2, 0)
- MovementLoopAddLocation(NPC, 143.81, 1.13, 189.15, 2, math.random(10, 24))
- MovementLoopAddLocation(NPC, 160.01, 0.15, 172.16, 2, 0)
- MovementLoopAddLocation(NPC, 173.63, -0.72, 154.14, 2, math.random(10, 24))
- end
|