asawtoothshark427424.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427424.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427424.lua
  4. Script Author : Rylec
  5. Script Date : 02-10-2020 02:41:45
  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, 12.58, -10.7, -22.64, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 8.29, -10.7, -12.46, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 23.02, -11.03, -15.55, 2, 0)
  20. MovementLoopAddLocation(NPC, 67.13, -13.21, -11.32, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 58.7, -13.1, -14.9, 2, 0)
  22. MovementLoopAddLocation(NPC, 53.11, -12.52, -18.91, 2, 0)
  23. MovementLoopAddLocation(NPC, 40.04, -12.85, -23.25, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 43.7, -11.49, -33.59, 2, 0)
  25. MovementLoopAddLocation(NPC, 43.77, -11.37, -41.58, 2, 0)
  26. MovementLoopAddLocation(NPC, 41.24, -11.67, -48.55, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 43.31, -11.65, -42.92, 2, 0)
  28. MovementLoopAddLocation(NPC, 45.71, -11.54, -32.45, 2, 0)
  29. MovementLoopAddLocation(NPC, 43.78, -12.26, -25.78, 2, 0)
  30. MovementLoopAddLocation(NPC, 39.21, -14.6, -13.09, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 42.43, -12.8, -21.7, 2, math.random(10, 20))
  32. end