1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- --[[
- Script Name : shriller11_1.lua
- Script Purpose : Waypoint Path for shriller11_1.lua
- Script Author : Devn00b
- Script Date : 05/12/2020 12:38:50 PM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- waypoints(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, -41.55, 0.27, -79.73, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -42.24, -0.09, -74.33, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -36.86, -0.09, -76.24, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -39.85, -0.1, -75.87, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.92, -0.09, -80.89, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -43.39, 0.63, -76.84, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -37.81, 0.63, -78.38, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.31, -0.1, -75.6, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -40.76, -0.1, -74.68, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -41.32, 0.09, -79.31, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -39.7, -0.1, -75.33, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -40.21, 0.27, -80.72, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -43.16, 0.27, -79.48, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -41.85, -0.11, -76.26, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.38, -0.1, -77.26, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.9, -0.1, -79.02, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -40.14, -0.1, -78.63, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -42.43, -0.1, -77.63, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -40.14, -0.1, -78.63, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.9, -0.1, -79.02, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.38, -0.1, -77.26, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -41.85, -0.11, -76.26, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -43.16, 0.27, -79.48, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -40.21, 0.27, -80.72, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -39.7, -0.1, -75.33, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -41.32, 0.09, -79.31, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -40.76, -0.1, -74.68, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.31, -0.1, -75.6, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -37.81, 0.63, -78.38, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -43.39, 0.63, -76.84, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -38.92, -0.09, -80.89, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -39.85, -0.1, -75.87, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -36.86, -0.09, -76.24, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -42.24, -0.09, -74.33, 2, math.random(0,10))
- MovementLoopAddLocation(NPC, -41.55, 0.27, -79.73, 2, math.random(0,10))
- end
|