arazortoothshark428470.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428470.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428470.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:20:34
  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.4, -10.57, -53.64, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -31.64, -10.7, -47.44, 2, 0)
  19. MovementLoopAddLocation(NPC, -40.57, -10.7, 7.66, 2, 0)
  20. MovementLoopAddLocation(NPC, -42.36, -12.19, 13.89, 2, 0)
  21. MovementLoopAddLocation(NPC, -42.11, -12.6, 17.1, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -36.84, -11.84, 14.59, 2, 0)
  23. MovementLoopAddLocation(NPC, -29.46, -12.31, 12.13, 2, 0)
  24. MovementLoopAddLocation(NPC, -18.61, -12.97, 9.36, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -14.3, -12.95, 24.89, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -35.52, -12.34, 23.26, 2, 0)
  27. MovementLoopAddLocation(NPC, -42.28, -12.21, 27.56, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -44.24, -12.06, 23.35, 2, 0)
  29. MovementLoopAddLocation(NPC, -47.45, -10.7, 14.36, 2, 0)
  30. MovementLoopAddLocation(NPC, -52.28, -10.7, 0.63, 2, 0)
  31. MovementLoopAddLocation(NPC, -56.8, -10.7, -7.11, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -53.79, -10.7, -19.51, 2, 0)
  33. MovementLoopAddLocation(NPC, -53.49, -10.65, -27.45, 2, 0)
  34. MovementLoopAddLocation(NPC, -50.55, -10.66, -33.25, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -30.88, -10.7, -18.69, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -28.86, -10.7, -23.73, 2, 0)
  37. end