asawtoothshark427393.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427393.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427393.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:15:03
  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, 44.84, -11.84, -80.36, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 55.04, -11.87, -79.5, 2, 0)
  19. MovementLoopAddLocation(NPC, 72.96, -11.87, -72.22, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 55.8, -11.43, -68, 2, 0)
  21. MovementLoopAddLocation(NPC, 51.65, -11.66, -67.84, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 54.62, -11.02, -57.68, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 66.61, -11, -51.13, 2, 0)
  24. MovementLoopAddLocation(NPC, 71.01, -11.19, -47.89, 2, 0)
  25. MovementLoopAddLocation(NPC, 78.26, -11.75, -43.58, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 96.77, -11.96, -31.8, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 87.73, -11.43, -39.98, 2, 0)
  28. MovementLoopAddLocation(NPC, 78.88, -11.18, -45.06, 2, 0)
  29. MovementLoopAddLocation(NPC, 72.88, -11.42, -49.31, 2, 0)
  30. MovementLoopAddLocation(NPC, 70.79, -11.7, -52.17, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 65.63, -11.83, -66.65, 2, math.random(10, 20))
  32. end