arazortoothshark428541.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428541.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428541.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21:38
  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, 26.71, -11.67, 68.27, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 44.07, -11.47, 64.44, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 48.92, -11.23, 66.48, 2, 0)
  20. MovementLoopAddLocation(NPC, 56.9, -11.26, 67.33, 2, 0)
  21. MovementLoopAddLocation(NPC, 69.01, -11.67, 68.76, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 63.17, -11.37, 78.83, 2, 0)
  23. MovementLoopAddLocation(NPC, 54.98, -11.78, 92.72, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 45.16, -10.76, 89.43, 2, 0)
  25. MovementLoopAddLocation(NPC, 34.83, -10.7, 85.58, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 51.25, -11.41, 83.87, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 48.73, -10.73, 76.73, 2, 0)
  28. MovementLoopAddLocation(NPC, 27.09, -12.29, 47.37, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 35.5, -11.73, 59.02, 2, 0)
  30. MovementLoopAddLocation(NPC, 45.31, -11.52, 66.43, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 36.19, -11.61, 49.08, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 51.62, -11.16, 56.51, 2, 0)
  33. MovementLoopAddLocation(NPC, 64.88, -11.49, 68.48, 2, math.random(10, 20))
  34. end