asmallcoastalcrab430823.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430823.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430823.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:41:27
  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, -0.73, -8.27, 249.41, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -0.68, -7.71, 241.56, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 0.08, -7.80, 244.03, 2, 0)
  20. MovementLoopAddLocation(NPC, 8.57, -12.99, 257.02, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 6.02, -8.37, 247.99, 2, 0)
  22. MovementLoopAddLocation(NPC, 5.99, -9.14, 240.16, 2, 0)
  23. MovementLoopAddLocation(NPC, 8.55, -10.00, 237.29, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 7.02, -8.88, 238.07, 2, 0)
  25. MovementLoopAddLocation(NPC, 3.45, -8.55, 242.45, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 4.19, -8.64, 241.94, 2, 0)
  27. MovementLoopAddLocation(NPC, 7.35, -10.16, 240.69, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 7.07, -10.03, 240.57, 2, 0)
  29. MovementLoopAddLocation(NPC, 2.36, -8.29, 240.06, 2, 0)
  30. MovementLoopAddLocation(NPC, -1.61, -7.62, 240.34, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -5.73, -7.55, 242.63, 2, math.random(10, 20))
  32. end