aMorakmangler429762.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler429762.lua
  3. Script Purpose : Waypoint Path for aMorakmangler429762.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, -82.45, 1.86, -206.49, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -86.74, 1.78, -208.57, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -79.05, 1.84, -190.5, 2, 0)
  21. MovementLoopAddLocation(NPC, -71.71, 2.11, -182.73, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -70.76, 2.1, -179.41, 2, math.random(14, 25))
  23. MovementLoopAddLocation(NPC, -71.04, 2.3, -188.3, 2, 0)
  24. MovementLoopAddLocation(NPC, -65.38, 1.3, -197.94, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -74.22, 2.32, -208.62, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -82.12, 1.65, -180.28, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -81.72, 1.85, -191.64, 2, 0)
  28. MovementLoopAddLocation(NPC, -80.18, 2.06, -200.3, 2, 0)
  29. MovementLoopAddLocation(NPC, -81.17, 1.95, -207.69, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -78.96, 1.84, -191.23, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, -71.71, 2.32, -199.09, 2, math.random(14, 25))
  32. end