asawtoothshark427408.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427408.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427408.lua
  4. Script Author : Rylec
  5. Script Date : 11-15-2019 06:25:40
  6. Script Notes : Dummy script until they fix these sharks on 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, -131.58, -12.7, 66.18, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -131.69, -12.68, 80.23, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -140.12, -13.42, 85.37, 2, 0)
  20. MovementLoopAddLocation(NPC, -150, -14.61, 86.65, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -150.91, -14.34, 74.35, 2, 0)
  22. MovementLoopAddLocation(NPC, -141.91, -12.47, 58.52, 2, 0)
  23. MovementLoopAddLocation(NPC, -138.63, -10.53, 40.25, 2, 0)
  24. MovementLoopAddLocation(NPC, -134.67, -10.46, 12.95, 2, 0)
  25. MovementLoopAddLocation(NPC, -142.8, -10.36, 1.36, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -151.23, -13.44, 18.87, 2, 0)
  27. MovementLoopAddLocation(NPC, -147.56, -13.11, 39.83, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -134.78, -12.59, 48.75, 2, 0)
  29. MovementLoopAddLocation(NPC, -125.74, -12.03, 68.8, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -117.99, -11.8, 80.44, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -128.01, -12.21, 75.66, 2, 0)
  32. end