arazortoothshark428464.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428464.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428464.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 10:19: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, -15.86, -11.82, -28.45, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 4.94, -11.92, -20.73, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -32.42, -11.21, -39.76, 2, 0)
  20. MovementLoopAddLocation(NPC, -40.42, -11.17, -50.41, 2, 0)
  21. MovementLoopAddLocation(NPC, -44.54, -11.29, -64.93, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -45.2, -10.72, -44.72, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -32.07, -10.7, -19.37, 2, 0)
  24. MovementLoopAddLocation(NPC, -23.94, -12.01, 1.21, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -13.31, -12.42, -14.61, 2, 0)
  26. MovementLoopAddLocation(NPC, -8.15, -12.22, -19.72, 2, 0)
  27. MovementLoopAddLocation(NPC, -2.77, -12.11, -22.47, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -10.29, -11.8, -23.99, 2, 0)
  29. MovementLoopAddLocation(NPC, -21.57, -11.91, -26.03, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -38.36, -11.01, -27.86, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -27.05, -11.88, -23.42, 2, 0)
  32. MovementLoopAddLocation(NPC, -5.58, -12.16, -12.6, 2, math.random(10, 20))
  33. end