asawtoothshark427427.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427427.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427427.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:42:52
  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, 64.66, -11.77, -15.56, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 52.71, -12.05, -23.24, 2, 0)
  19. MovementLoopAddLocation(NPC, 46.53, -11.58, -30.39, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 42.22, -12.45, -28.55, 2, 0)
  21. MovementLoopAddLocation(NPC, 37.82, -13.61, -27.82, 2, 0)
  22. MovementLoopAddLocation(NPC, 33.72, -14.05, -28.49, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 29.88, -15.23, -25.02, 2, 0)
  24. MovementLoopAddLocation(NPC, 25.76, -15.36, -21.05, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 34.42, -13.59, -19.75, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 32.08, -13.74, -0.24, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 41.41, -13.45, 0.49, 2, math.random(10, 20))
  28. end