arazortoothshark428638.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/arazortoothshark428638.lua
  3. Script Purpose : Waypoint Path for arazortoothshark428638.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 09:28:22
  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, -10.61, -11.39, -12.07, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -24.68, -11.69, -15.55, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -27.53, -11.51, -44.08, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -20.38, -11.85, -18.9, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -15.03, -11.16, -33.82, 2, 0)
  22. MovementLoopAddLocation(NPC, -10.97, -11.6, -40.43, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -22.25, -11.53, -40.29, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -5.59, -11.39, -27.44, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -12.97, -11.58, -28.55, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -14.3, -11.58, -33.26, 2, 0)
  27. MovementLoopAddLocation(NPC, -13.92, -11.48, -39.78, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -7.96, -10.95, -46.94, 2, 0)
  29. MovementLoopAddLocation(NPC, -6.76, -11.21, -52.67, 2, 0)
  30. MovementLoopAddLocation(NPC, -5.13, -11.66, -58.17, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -12.65, -10.7, -57.54, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -13.2, -11.04, -30.02, 2, 0)
  33. end