agiantcoastalcrab429005.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/agiantcoastalcrab429005.lua
  3. Script Purpose : Waypoint Path for agiantcoastalcrab429005.lua
  4. Script Author : Rylec
  5. Script Date : 04-06-2020 05:03:05
  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, 56.26, -9.97, -34.94, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, 70.41, -9.22, -33.33, 2, 0)
  19. MovementLoopAddLocation(NPC, 71.69, -10.09, -34.01, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, 58.19, -8.97, -25.28, 2, math.random(16, 24))
  21. MovementLoopAddLocation(NPC, 54.68, -9.78, -33.88, 2, 0)
  22. MovementLoopAddLocation(NPC, 53.15, -10.98, -35.36, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, 55.62, -9.81, -34.26, 2, 0)
  24. MovementLoopAddLocation(NPC, 62, -6.39, -32.15, 2, 0)
  25. MovementLoopAddLocation(NPC, 65.01, -7.03, -31.52, 2, 0)
  26. MovementLoopAddLocation(NPC, 71.88, -10.32, -34.64, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, 58.44, -7.23, -32.84, 2, 0)
  28. MovementLoopAddLocation(NPC, 52.62, -11.65, -36.71, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, 52.66, -10.67, -34.2, 2, math.random(16, 24))
  30. MovementLoopAddLocation(NPC, 54.23, -9.93, -33.86, 2, 0)
  31. MovementLoopAddLocation(NPC, 56.31, -9.57, -34.08, 2, math.random(16, 24))
  32. MovementLoopAddLocation(NPC, 51.49, -11.3, -34.68, 2, math.random(16, 24))
  33. end