akoi133772195.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/akoi133772195.lua
  3. Script Purpose : Waypoint Path for akoi133772195.lua
  4. Script Author : Rylec
  5. Script Date : 02-21-2021 09:39:04
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 771.9, -26, -355.01, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 779.38, -26.02, -358.31, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 776.04, -26.49, -355.56, 2, 0)
  21. MovementLoopAddLocation(NPC, 774.13, -26.2, -354.07, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 771.14, -26.02, -352.53, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 778.91, -25.97, -358.56, 2, 0)
  24. MovementLoopAddLocation(NPC, 782.4, -26.01, -360.47, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 776.66, -26.07, -356.52, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 775.42, -26.12, -356.82, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 779.16, -26.04, -359.46, 2, math.random(10, 20))
  28. end