asmallcoastalcrab430815.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430815.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430815.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:41:42
  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, 4.28, -8.60, 240.91, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 7.81, -9.43, 253.85, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 3.74, -8.64, 247.62, 2, 0)
  20. MovementLoopAddLocation(NPC, 2.44, -8.22, 244.80, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -3.66, -7.66, 245.55, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 5.99, -8.83, 239.63, 2, 0)
  23. MovementLoopAddLocation(NPC, 6.65, -8.66, 238.29, 2, 0)
  24. MovementLoopAddLocation(NPC, 10.96, -10.43, 236.43, 2, 0)
  25. MovementLoopAddLocation(NPC, 8.22, -9.70, 237.00, 2, 0)
  26. MovementLoopAddLocation(NPC, 5.41, -8.13, 238.13, 2, 0)
  27. MovementLoopAddLocation(NPC, 4.09, -7.98, 238.17, 2, 0)
  28. MovementLoopAddLocation(NPC, 6.05, -8.67, 244.97, 2, 0)
  29. MovementLoopAddLocation(NPC, 7.18, -8.30, 247.93, 2, 0)
  30. MovementLoopAddLocation(NPC, 7.17, -9.38, 254.83, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 6.35, -8.48, 249.77, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 4.41, -8.53, 248.29, 2, 0)
  33. MovementLoopAddLocation(NPC, 1.99, -8.07, 243.65, 2, 0)
  34. MovementLoopAddLocation(NPC, 0.49, -7.94, 240.44, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -5.03, -7.57, 239.80, 2, 0)
  36. MovementLoopAddLocation(NPC, -8.63, -6.70, 238.70, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, -0.11, -7.78, 243.68, 2, 0)
  38. MovementLoopAddLocation(NPC, 5.33, -8.93, 252.90, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 5.67, -9.21, 242.73, 2, math.random(10, 20))
  40. MovementLoopAddLocation(NPC, 4.69, -8.74, 242.51, 2, 0)
  41. end