aMorakmangler429785.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429785.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429785.lua
  4. Script Author : Rylec
  5. Script Date : 07-28-2020 10:33:33
  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, -69.39, 2.14, -181.72, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -80.84, 1.85, -192.71, 2, 0)
  20. MovementLoopAddLocation(NPC, -88.94, 1.68, -198.25, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -84.72, 2.06, -192.74, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -69.4, 2.3, -186.29, 2, 0)
  23. MovementLoopAddLocation(NPC, -57.48, 2.25, -174.26, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -57.13, 2.25, -182.28, 2, 0)
  25. MovementLoopAddLocation(NPC, -68.93, 2.46, -194.86, 2, 0)
  26. MovementLoopAddLocation(NPC, -72.55, 2.31, -200.69, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -89.35, 1.69, -206.26, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -84.66, 1.68, -213.45, 2, math.random(14, 25))
  29. end