aMorakmangler133770054.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aMorakmangler133770054.lua
  3. Script Purpose : Waypoint Path for aMorakmangler133770054.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, -43.95, 2.09, -121.11, 2, math.random(14, 25))
  19. MovementLoopAddLocation(NPC, -64.69, 4.26, -102.28, 2, math.random(14, 25))
  20. MovementLoopAddLocation(NPC, -74.13, 4.35, -91.04, 2, 0)
  21. MovementLoopAddLocation(NPC, -78.79, 4.37, -88.23, 2, math.random(14, 25))
  22. MovementLoopAddLocation(NPC, -80.08, 4.37, -96.97, 2, 0)
  23. MovementLoopAddLocation(NPC, -77.78, 4.31, -108.6, 2, math.random(14, 25))
  24. MovementLoopAddLocation(NPC, -85.47, 4.4, -103.16, 2, 0)
  25. MovementLoopAddLocation(NPC, -93.23, 4.42, -102.02, 2, 0)
  26. MovementLoopAddLocation(NPC, -102.63, 4.46, -95.25, 2, math.random(14, 25))
  27. MovementLoopAddLocation(NPC, -95.18, 4.43, -90.5, 2, math.random(14, 25))
  28. MovementLoopAddLocation(NPC, -87.97, 4.4, -93.15, 2, 0)
  29. MovementLoopAddLocation(NPC, -73.13, 4.35, -87.55, 2, math.random(14, 25))
  30. MovementLoopAddLocation(NPC, -70.84, 4.31, -96.29, 2, math.random(14, 25))
  31. MovementLoopAddLocation(NPC, -66.86, 4.51, -99.14, 2, 0)
  32. MovementLoopAddLocation(NPC, -49.27, 2.21, -116.61, 2, math.random(14, 25))
  33. MovementLoopAddLocation(NPC, -42.63, 2.13, -121.14, 2, math.random(14, 25))
  34. MovementLoopAddLocation(NPC, -54.05, 1.98, -126.69, 2, math.random(14, 25))
  35. MovementLoopAddLocation(NPC, -50.88, 1.9, -125.1, 2, 0)
  36. MovementLoopAddLocation(NPC, -44.99, 1.9, -125.13, 2, 0)
  37. MovementLoopAddLocation(NPC, -39.89, 2.18, -123.11, 2, math.random(14, 25))
  38. end