aMorakmangler133770141.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770141.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770141.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, -91.19, 4.42, -108.92, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -88.02, 4.4, -100.35, 2, 0)
  20. MovementLoopAddLocation(NPC, -86.18, 4.4, -87.2, 2, math.random(14, 25))
  21. MovementLoopAddLocation(NPC, -79.26, 4.37, -99.46, 2, 0)
  22. MovementLoopAddLocation(NPC, -72.77, 4.32, -100.47, 2, 0)
  23. MovementLoopAddLocation(NPC, -69.47, 4.72, -102.9, 2, 0)
  24. MovementLoopAddLocation(NPC, -58.84, 2.92, -114.69, 2, math.random(14, 25))
  25. MovementLoopAddLocation(NPC, -87.37, 4.4, -104.01, 2, math.random(14, 25))
  26. MovementLoopAddLocation(NPC, -81.69, 4.37, -105.13, 2, 0)
  27. MovementLoopAddLocation(NPC, -62.95, 4.02, -113.48, 2, 0)
  28. MovementLoopAddLocation(NPC, -53.08, 2.3, -114.17, 2, 0)
  29. MovementLoopAddLocation(NPC, -40.87, 2.18, -122.17, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -48.46, 2.19, -116.79, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, -54.66, 2.45, -113.8, 2, 0)
  32. MovementLoopAddLocation(NPC, -87.62, 4.4, -114.19, 2, math.random(14, 25))
  33. end