asmallcoastalcrab430744.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430744.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430744.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:42:18
  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.43, -7.93, 212.96, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -43.07, -4.89, 209.84, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -51.05, -8.14, 213.87, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -57.40, -9.22, 207.79, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -56.23, -8.45, 209.26, 2, 0)
  22. MovementLoopAddLocation(NPC, -50.49, -8.22, 215.42, 2, 0)
  23. MovementLoopAddLocation(NPC, -50.04, -8.32, 216.87, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -49.88, -8.31, 216.50, 2, 0)
  25. MovementLoopAddLocation(NPC, -54.20, -7.88, 211.09, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -50.66, -8.82, 206.11, 2, 0)
  27. MovementLoopAddLocation(NPC, -46.63, -8.89, 202.35, 2, 0)
  28. MovementLoopAddLocation(NPC, -44.78, -10.91, 199.08, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -45.96, -8.94, 201.97, 2, 0)
  30. MovementLoopAddLocation(NPC, -48.77, -9.41, 204.07, 2, 0)
  31. MovementLoopAddLocation(NPC, -53.80, -9.08, 205.33, 2, 0)
  32. MovementLoopAddLocation(NPC, -55.52, -9.23, 206.16, 2, 0)
  33. MovementLoopAddLocation(NPC, -57.39, -9.83, 205.81, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -56.56, -9.59, 205.89, 2, 0)
  35. MovementLoopAddLocation(NPC, -53.84, -8.15, 208.18, 2, 0)
  36. MovementLoopAddLocation(NPC, -45.97, -5.59, 214.15, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, -61.53, -9.44, 217.02, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, -56.08, -7.90, 211.96, 2, 0)
  39. MovementLoopAddLocation(NPC, -54.29, -8.11, 208.75, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, -47.37, -6.93, 207.66, 2, 0)
  41. MovementLoopAddLocation(NPC, -43.06, -7.39, 204.81, 2, math.random(10, 20))
  42. end