arazortoothshark428500.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428500.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428500.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 12:32:07
  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, 58.7, -12.65, -12.28, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 31.45, -14.75, -9.94, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 29.73, -14.35, -17.41, 2, 0)
  20. MovementLoopAddLocation(NPC, 28.29, -12.32, -28.44, 2, 0)
  21. MovementLoopAddLocation(NPC, 28.14, -11.94, -31.7, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 15.93, -12.7, -21.03, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 14.58, -12.2, -25.41, 2, 0)
  24. MovementLoopAddLocation(NPC, 6.24, -11.73, -42.82, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -5.07, -11.78, -39.82, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 14.4, -11.9, -34.56, 2, 0)
  27. MovementLoopAddLocation(NPC, 28.08, -11.79, -31.43, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 25.36, -12.52, -25.86, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 37.89, -12.69, -12, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 43.55, -13.13, -10.86, 2, 0)
  31. MovementLoopAddLocation(NPC, 48.22, -13.14, -10.54, 2, 0)
  32. end