agiantcoastalcrab428999.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab428999.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab428999.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:02:46
  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, 52.06, -9.82, -32.29, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 56.35, -8.32, -29.22, 2, 0)
  19. MovementLoopAddLocation(NPC, 58.04, -8.03, -26.09, 2, 0)
  20. MovementLoopAddLocation(NPC, 63.76, -9.5, -22.48, 2, math.random(16, 24))
  21. MovementLoopAddLocation(NPC, 60.09, -8.49, -24.39, 2, 0)
  22. MovementLoopAddLocation(NPC, 59.42, -7.22, -26.43, 2, 0)
  23. MovementLoopAddLocation(NPC, 57.49, -7.32, -30.59, 2, 0)
  24. MovementLoopAddLocation(NPC, 57.07, -9.35, -34.3, 2, 0)
  25. MovementLoopAddLocation(NPC, 50.83, -11.25, -33.72, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, 56.93, -9.89, -36.07, 2, 0)
  27. MovementLoopAddLocation(NPC, 60.49, -9.21, -35.82, 2, 0)
  28. MovementLoopAddLocation(NPC, 72.09, -10.07, -25.62, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, 62.53, -9.11, -36.35, 2, 0)
  30. MovementLoopAddLocation(NPC, 60.12, -8.82, -35.29, 2, 0)
  31. MovementLoopAddLocation(NPC, 51.51, -11.26, -29.17, 2, math.random(16, 24))
  32. MovementLoopAddLocation(NPC, 52.39, -10.47, -32.68, 2, 0)
  33. MovementLoopAddLocation(NPC, 49.67, -11.99, -32.15, 2, math.random(16, 24))
  34. MovementLoopAddLocation(NPC, 53.88, -9.85, -30.9, 2, 0)
  35. MovementLoopAddLocation(NPC, 55.79, -8.68, -30.59, 2, 0)
  36. MovementLoopAddLocation(NPC, 57.66, -7.39, -29.32, 2, 0)
  37. MovementLoopAddLocation(NPC, 61.95, -7.47, -25.5, 2, 0)
  38. MovementLoopAddLocation(NPC, 63.31, -9.15, -22.99, 2, math.random(16, 24))
  39. MovementLoopAddLocation(NPC, 62.26, -7.46, -25.71, 2, 0)
  40. MovementLoopAddLocation(NPC, 59.85, -6.94, -27.77, 2, 0)
  41. MovementLoopAddLocation(NPC, 53.19, -10.02, -30.18, 2, math.random(16, 24))
  42. end