asawtoothshark427443.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427443.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427443.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:21:35
  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, 19.46, -12.57, 61.44, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 23.09, -12.47, 48.19, 2, 0)
  19. MovementLoopAddLocation(NPC, 25.68, -12.62, 12.37, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 15.31, -11.79, 50.22, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -3.55, -12.11, 40.88, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -1.54, -11.84, 52.79, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -6.47, -12.2, 46.14, 2, 0)
  24. MovementLoopAddLocation(NPC, -13.35, -13.78, 38.02, 2, 0)
  25. MovementLoopAddLocation(NPC, -20.46, -14.28, 32.34, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -5.55, -12.44, 41.33, 2, 0)
  27. MovementLoopAddLocation(NPC, 10.33, -12.73, 53.96, 2, math.random(10, 20))
  28. end