asawtoothshark427388.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427388.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427388.lua
  4. Script Author : Rylec
  5. Script Date : 11-15-2019 06:25:35
  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, -107.28, -11, 78.74, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -111.93, -11.07, 81.41, 2, 0)
  19. MovementLoopAddLocation(NPC, -130.76, -11.3, 84.11, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -147.27, -12.64, 78.63, 2, 0)
  21. MovementLoopAddLocation(NPC, -151.58, -12.74, 65.35, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -141.12, -12.19, 59.05, 2, 0)
  23. MovementLoopAddLocation(NPC, -116.54, -11.79, 52.65, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -117.49, -11.68, 67.5, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -119.72, -11.74, 72.22, 2, 0)
  26. MovementLoopAddLocation(NPC, -127.32, -11.93, 75.18, 2, 0)
  27. MovementLoopAddLocation(NPC, -137.96, -12.43, 76.66, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -143.94, -12.47, 68.84, 2, 0)
  29. MovementLoopAddLocation(NPC, -149.37, -12.11, 19.16, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -133.72, -11.36, 30.37, 2, 0)
  31. MovementLoopAddLocation(NPC, -122.98, -11.04, 47.18, 2, 0)
  32. MovementLoopAddLocation(NPC, -107.05, -10.95, 71.17, 2, 0)
  33. end