asawtoothshark427453.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427453.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427453.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:51:09
  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, 32.37, -12.24, 18.78, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 26.93, -12.94, 25.12, 2, 0)
  19. MovementLoopAddLocation(NPC, 17.62, -12.8, 32.23, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 24.97, -12.28, 37.78, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 45.79, -11.19, 59.97, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 35.19, -11.08, 64.5, 2, 0)
  23. MovementLoopAddLocation(NPC, 12.84, -10.63, 71.28, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 66.55, -10.7, 71.77, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 71.58, -11.18, 58.37, 2, 0)
  26. MovementLoopAddLocation(NPC, 70.59, -11.02, 41.29, 2, 0)
  27. MovementLoopAddLocation(NPC, 67.17, -11.74, 27.41, 2, 0)
  28. MovementLoopAddLocation(NPC, 65.81, -12.27, 14.65, 2, 0)
  29. MovementLoopAddLocation(NPC, 65.21, -12.86, 7, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 46.44, -12.45, 11.89, 2, 0)
  31. end