asawtoothshark427399.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427399.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427399.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:17:06
  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, 94.03, -12.7, -24.83, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 86.72, -12.82, -14.66, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 90.32, -12.68, -28.35, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 85.39, -12.21, -29.39, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 79.79, -12.53, -30.19, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 80.5, -12.63, -35.24, 2, 0)
  23. MovementLoopAddLocation(NPC, 81.82, -12.81, -40.2, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 81.08, -12.12, -33.71, 2, 0)
  25. MovementLoopAddLocation(NPC, 81.68, -11.84, -27.19, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 74.9, -10.7, -36.74, 2, 0)
  27. MovementLoopAddLocation(NPC, 64.89, -10.68, -46.93, 2, 0)
  28. MovementLoopAddLocation(NPC, 59.32, -10.63, -49.48, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 68.76, -11.34, -48.46, 2, 0)
  30. MovementLoopAddLocation(NPC, 79.17, -12, -44.97, 2, 0)
  31. MovementLoopAddLocation(NPC, 87.44, -12.27, -44.07, 2, 0)
  32. MovementLoopAddLocation(NPC, 93.68, -12.59, -44.26, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 94.21, -12.11, -33.05, 2, math.random(10, 20))
  34. end