1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- --[[
- Script Name : rattwo.lua
- Script Purpose : Waypoint Path for rattwo.lua
- Script Author : Devn00b
- Script Date : 04/09/2020 01:44:20 AM
- 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, 686.64, -20.64, -14.49, 5, 0)
- MovementLoopAddLocation(NPC, 704.74, -20.64, -22.94, 5, 0)
- MovementLoopAddLocation(NPC, 704.4, -20.87, -61.16, 5, 0)
- MovementLoopAddLocation(NPC, 712.02, -20.89, -70.69, 5, 0)
- MovementLoopAddLocation(NPC, 672.32, -20.64, -124.57, 5, 0)
- MovementLoopAddLocation(NPC, 710.37, -20.89, -104.91, 5, 0)
- MovementLoopAddLocation(NPC, 718.69, -21.05, -67.02, 5, 0)
- MovementLoopAddLocation(NPC, 748.22, -21.42, -50.85, 5, 0)
- MovementLoopAddLocation(NPC, 766.66, -20.93, -16.59, 5, 0)
- MovementLoopAddLocation(NPC, 767.86, -20.64, -28.26, 5, 0)
- MovementLoopAddLocation(NPC, 767.71, -21.83, -51.64, 5, 0)
- MovementLoopAddLocation(NPC, 804.52, -20.46, -61.69, 5, 0)
- MovementLoopAddLocation(NPC, 852.38, -25.36, -64.48, 5, 0)
- MovementLoopAddLocation(NPC, 860.95, -25.37, -77.22, 5, 0)
- MovementLoopAddLocation(NPC, 886.55, -25.36, -56.57, 5, 0)
- MovementLoopAddLocation(NPC, 898.46, -25.43, -21.16, 5, 0)
- MovementLoopAddLocation(NPC, 899.23, -25.47, 10.79, 5, 0)
- MovementLoopAddLocation(NPC, 909.8, -25.52, 22.64, 5, 0)
- MovementLoopAddLocation(NPC, 896.46, -25.52, 20.77, 5, 0)
- MovementLoopAddLocation(NPC, 904.43, -25.45, 32.59, 5, 0)
- MovementLoopAddLocation(NPC, 913.82, -25.38, 52.74, 5, 0)
- MovementLoopAddLocation(NPC, 924.79, -25.49, 48.31, 5, 0)
- MovementLoopAddLocation(NPC, 932.46, -25.6, 30.46, 5, 0)
- MovementLoopAddLocation(NPC, 906.67, -25.46, 16.61, 5, 0)
- MovementLoopAddLocation(NPC, 932.46, -25.6, 30.46, 5, 0)
- MovementLoopAddLocation(NPC, 924.79, -25.49, 48.31, 5, 0)
- MovementLoopAddLocation(NPC, 913.82, -25.38, 52.74, 5, 0)
- MovementLoopAddLocation(NPC, 904.43, -25.45, 32.59, 5, 0)
- MovementLoopAddLocation(NPC, 896.46, -25.52, 20.77, 5, 0)
- MovementLoopAddLocation(NPC, 909.8, -25.52, 22.64, 5, 0)
- MovementLoopAddLocation(NPC, 899.23, -25.47, 10.79, 5, 0)
- MovementLoopAddLocation(NPC, 898.46, -25.43, -21.16, 5, 0)
- MovementLoopAddLocation(NPC, 886.55, -25.36, -56.57, 5, 0)
- MovementLoopAddLocation(NPC, 860.95, -25.37, -77.22, 5, 0)
- MovementLoopAddLocation(NPC, 852.38, -25.36, -64.48, 5, 0)
- MovementLoopAddLocation(NPC, 804.52, -20.46, -61.69, 5, 0)
- MovementLoopAddLocation(NPC, 767.71, -21.83, -51.64, 5, 0)
- MovementLoopAddLocation(NPC, 767.86, -20.64, -28.26, 5, 0)
- MovementLoopAddLocation(NPC, 766.66, -20.93, -16.59, 5, 0)
- MovementLoopAddLocation(NPC, 748.22, -21.42, -50.85, 5, 0)
- MovementLoopAddLocation(NPC, 718.69, -21.05, -67.02, 5, 0)
- MovementLoopAddLocation(NPC, 710.37, -20.89, -104.91, 5, 0)
- MovementLoopAddLocation(NPC, 672.32, -20.64, -124.57, 5, 0)
- MovementLoopAddLocation(NPC, 712.02, -20.89, -70.69, 5, 0)
- MovementLoopAddLocation(NPC, 704.4, -20.87, -61.16, 5, 0)
- MovementLoopAddLocation(NPC, 704.74, -20.64, -22.94, 5, 0)
- MovementLoopAddLocation(NPC, 686.64, -20.64, -14.49, 5, 0)
- end
|