12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- --[[
- Script Name : fluffy.lua
- Script Purpose : Waypoint Path for fluffy.lua
- Script Author : Devn00b
- Script Date : 04/09/2020 04:38:15 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, 809.06, -23.31, 118.9, 2, 0)
- MovementLoopAddLocation(NPC, 814.98, -23.31, 81.14, 2, 0)
- MovementLoopAddLocation(NPC, 832.46, -23.35, 41.37, 2, 0)
- MovementLoopAddLocation(NPC, 857.7, -25.4, 38.3, 2, 0)
- MovementLoopAddLocation(NPC, 859.84, -25.51, 34.46, 2, 0)
- MovementLoopAddLocation(NPC, 885.67, -25.49, 37.78, 2, 0)
- MovementLoopAddLocation(NPC, 917.64, -25.49, 20.58, 2, 0)
- MovementLoopAddLocation(NPC, 913.24, -25.51, 19, 2, 0)
- MovementLoopAddLocation(NPC, 890.98, -25.51, 57.99, 2, 0)
- MovementLoopAddLocation(NPC, 864.42, -25.5, 111.85, 2, 0)
- MovementLoopAddLocation(NPC, 904.37, -25.37, 16.43, 2, 0)
- MovementLoopAddLocation(NPC, 902.4, -25.37, -17.72, 2, 0)
- MovementLoopAddLocation(NPC, 891.84, -25.46, -22.72, 2, 0)
- MovementLoopAddLocation(NPC, 896.53, -25.45, -23.46, 2, 0)
- MovementLoopAddLocation(NPC, 888.31, -25.4, -50.94, 2, 0)
- MovementLoopAddLocation(NPC, 870.99, -25.36, -61.85, 2, 0)
- MovementLoopAddLocation(NPC, 849.85, -25.36, -64.25, 2, 0)
- MovementLoopAddLocation(NPC, 727.6, -21.38, -54.82, 2, 0)
- MovementLoopAddLocation(NPC, 706.41, -21.09, -80.29, 2, 0)
- MovementLoopAddLocation(NPC, 727.6, -21.38, -54.82, 2, 0)
- MovementLoopAddLocation(NPC, 849.85, -25.36, -64.25, 2, 0)
- MovementLoopAddLocation(NPC, 870.99, -25.36, -61.85, 2, 0)
- MovementLoopAddLocation(NPC, 888.31, -25.4, -50.94, 2, 0)
- MovementLoopAddLocation(NPC, 896.53, -25.45, -23.46, 2, 0)
- MovementLoopAddLocation(NPC, 891.84, -25.46, -22.72, 2, 0)
- MovementLoopAddLocation(NPC, 902.4, -25.37, -17.72, 2, 0)
- MovementLoopAddLocation(NPC, 904.37, -25.37, 16.43, 2, 0)
- MovementLoopAddLocation(NPC, 864.42, -25.5, 111.85, 2, 0)
- MovementLoopAddLocation(NPC, 890.98, -25.51, 57.99, 2, 0)
- MovementLoopAddLocation(NPC, 913.24, -25.51, 19, 2, 0)
- MovementLoopAddLocation(NPC, 917.64, -25.49, 20.58, 2, 0)
- MovementLoopAddLocation(NPC, 885.67, -25.49, 37.78, 2, 0)
- MovementLoopAddLocation(NPC, 859.84, -25.51, 34.46, 2, 0)
- MovementLoopAddLocation(NPC, 857.7, -25.4, 38.3, 2, 0)
- MovementLoopAddLocation(NPC, 832.46, -23.35, 41.37, 2, 0)
- MovementLoopAddLocation(NPC, 814.98, -23.31, 81.14, 2, 0)
- MovementLoopAddLocation(NPC, 809.06, -23.31, 118.9, 2, 0)
- end
|