12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- --[[
- Script Name : shriller20.lua
- Script Purpose : Waypoint Path for shriller20.lua
- Script Author : Devn00b
- Script Date : 05/14/2020 01:56: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)
- waypoints(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, -161.84, -0.08, -96.82, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -160.73, -0.08, -90.79, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -163.05, -0.08, -89.73, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -164.93, -0.08, -95.46, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -162.01, -0.08, -90.66, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -160.52, 0, -97.63, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -159.87, -0.08, -91.9, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -159.6, -0.08, -93.72, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -160.26, -0.07, -95.46, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -163.94, -0.08, -94.57, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -161.42, -0.08, -93.1, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -162.52, -0.08, -90.69, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -163.29, -0.08, -92.92, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -161.5, -0.08, -93.45, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -162.21, -0.07, -95.7, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -159.9, -0.08, -94.94, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -162.21, -0.07, -95.7, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -161.5, -0.08, -93.45, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -163.29, -0.08, -92.92, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -162.52, -0.08, -90.69, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -161.42, -0.08, -93.1, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -163.94, -0.08, -94.57, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -160.26, -0.07, -95.46, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -159.6, -0.08, -93.72, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -159.87, -0.08, -91.9, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -160.52, 0, -97.63, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -162.01, -0.08, -90.66, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -164.93, -0.08, -95.46, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -163.05, -0.08, -89.73, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -160.73, -0.08, -90.79, 2, math.random(0,3))
- MovementLoopAddLocation(NPC, -161.84, -0.08, -96.82, 2, math.random(0,3))
- end
|