asawtoothshark427371.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asawtoothshark427371.lua
  3. Script Purpose : Waypoint Path for asawtoothshark427371.lua
  4. Script Author : Rylec
  5. Script Date : 11-15-2019 06:25:43
  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, -140.67, -12.8, 41.56, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -135.76, -12.24, 24.75, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -127.68, -11.75, 18.5, 2, 0)
  20. MovementLoopAddLocation(NPC, -116.12, -11.65, 14.63, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -119.59, -10.52, 17.4, 2, 0)
  22. MovementLoopAddLocation(NPC, -125.23, -10.19, 25, 2, 0)
  23. MovementLoopAddLocation(NPC, -124.52, -10.19, 38.4, 2, 0)
  24. MovementLoopAddLocation(NPC, -114.76, -10.41, 46.99, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -111.85, -10.2, 61.13, 2, 0)
  26. MovementLoopAddLocation(NPC, -123.89, -10.28, 78.47, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -135.17, -12.26, 66.27, 2, 0)
  28. MovementLoopAddLocation(NPC, -147.86, -13.22, 55.39, 2, 0)
  29. MovementLoopAddLocation(NPC, -149.84, -13.63, 42.26, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -144.65, -13.33, 17.69, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -142.58, -12.5, 33.93, 2, 0)
  32. end