asawtoothshark427450.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427450.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427450.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:48:30
  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, 42.47, -11.78, 55.4, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 43.92, -11.62, 46.02, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 55.45, -12.47, 47.69, 2, 0)
  20. MovementLoopAddLocation(NPC, 66.31, -12.57, 48.83, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 61.35, -11.83, 52.43, 2, 0)
  22. MovementLoopAddLocation(NPC, 58.73, -11.38, 56.24, 2, 0)
  23. MovementLoopAddLocation(NPC, 53.63, -11.26, 70.5, 2, 0)
  24. MovementLoopAddLocation(NPC, 50.42, -11.45, 74.52, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 63.77, -11.52, 77.49, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 70.74, -11.71, 65.49, 2, 0)
  27. MovementLoopAddLocation(NPC, 84.18, -12.23, 50.99, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 77.55, -12.89, 41.35, 2, 0)
  29. MovementLoopAddLocation(NPC, 75.61, -13.07, 35.79, 2, 0)
  30. MovementLoopAddLocation(NPC, 75.41, -13.27, 24.89, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 71.62, -12.08, 31.27, 2, 0)
  32. MovementLoopAddLocation(NPC, 60.27, -12.66, 45.57, 2, 0)
  33. MovementLoopAddLocation(NPC, 56.74, -12.66, 51.88, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 47.48, -12.01, 53.18, 2, 0)
  35. MovementLoopAddLocation(NPC, 40.22, -11.87, 55.03, 2, 0)
  36. MovementLoopAddLocation(NPC, 34.22, -11.81, 63.71, 2, math.random(10, 20))
  37. end