aneedlefang427572.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427572.lua
  3. Script Purpose : Waypoint Path for aneedlefang427572.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:20:29
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -30.39, -12.08, -21.49, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -37.81, -10.56, -16.63, 2, 0)
  19. MovementLoopAddLocation(NPC, -84.43, -10.3, 10.04, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -64.39, -10.59, -3.71, 2, 0)
  21. MovementLoopAddLocation(NPC, -52.98, -10.3, -18.83, 2, 0)
  22. MovementLoopAddLocation(NPC, -44.95, -11.42, -34.46, 2, 0)
  23. MovementLoopAddLocation(NPC, -40.05, -12.08, -38.9, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -38.36, -10.42, -49.04, 2, 0)
  25. MovementLoopAddLocation(NPC, -39.42, -10.41, -60.48, 2, 0)
  26. MovementLoopAddLocation(NPC, -40.6, -12.15, -70.49, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -33.55, -10.49, -72.28, 2, 0)
  28. MovementLoopAddLocation(NPC, -22.09, -10.22, -73.77, 2, 0)
  29. MovementLoopAddLocation(NPC, -12.21, -10.28, -69.59, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -3.48, -11.2, -63.03, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -10.55, -11.16, -53.99, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -49.39, -10.3, -50.66, 2, 0)
  33. MovementLoopAddLocation(NPC, -63.25, -11.07, -49.51, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -49.45, -10.2, -48.74, 2, 0)
  35. MovementLoopAddLocation(NPC, -33.1, -10.44, -46.72, 2, 0)
  36. MovementLoopAddLocation(NPC, -22.3, -11.35, -44.71, 2, 0)
  37. MovementLoopAddLocation(NPC, -13.01, -11.86, -40.97, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, -7.99, -12.03, -47.29, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, -7.66, -11.12, -38.52, 2, 0)
  40. MovementLoopAddLocation(NPC, -5.4, -11.27, -14.97, 2, math.random(10, 20))
  41. MovementLoopAddLocation(NPC, -23.62, -11.12, -18.64, 2, 0)
  42. end