arazortoothshark428551.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428551.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428551.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:51:13
  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, 1.45, -12.46, 36.71, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -10.54, -13.86, 33.09, 2, 0)
  19. MovementLoopAddLocation(NPC, -18.84, -14.14, 27.84, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -13.4, -13.67, 31.45, 2, 0)
  21. MovementLoopAddLocation(NPC, -3.13, -12.66, 36.62, 2, 0)
  22. MovementLoopAddLocation(NPC, 1.94, -11.86, 41, 2, 0)
  23. MovementLoopAddLocation(NPC, 5.18, -11.93, 43.36, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 9.93, -12.54, 36.78, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 10.85, -12.97, 33.97, 2, 0)
  26. MovementLoopAddLocation(NPC, 11.44, -13.74, 23.45, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 2.81, -13.59, 27.86, 2, 0)
  28. MovementLoopAddLocation(NPC, -1.76, -13.66, 28.5, 2, 0)
  29. MovementLoopAddLocation(NPC, -13.95, -13.56, 25.39, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -4.8, -13.14, 24.81, 2, 0)
  31. MovementLoopAddLocation(NPC, 7.82, -12.54, 21.28, 2, 0)
  32. MovementLoopAddLocation(NPC, 14.91, -12.73, 20, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 12.4, -13.08, 28.06, 2, 0)
  34. MovementLoopAddLocation(NPC, 3.57, -13.22, 44.97, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 8.04, -12.57, 47.06, 2, 0)
  36. MovementLoopAddLocation(NPC, 12.03, -12.48, 48.1, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, 7.1, -11.93, 41.79, 2, 0)
  38. end