asmallcoastalcrab430773.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430773.lua
  3. Script Purpose : Waypoint Path for smallcrab002_06.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:42:04
  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, -35.02, -7.99, 228.74, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -32.26, -8.00, 231.61, 2, 0)
  19. MovementLoopAddLocation(NPC, -19.97, -8.57, 254.97, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -25.92, -8.14, 248.08, 2, 0)
  21. MovementLoopAddLocation(NPC, -27.84, -8.02, 244.58, 2, 0)
  22. MovementLoopAddLocation(NPC, -30.10, -8.36, 243.81, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -31.20, -8.21, 239.49, 2, 0)
  24. MovementLoopAddLocation(NPC, -32.19, -8.07, 236.14, 2, 0)
  25. MovementLoopAddLocation(NPC, -34.14, -7.95, 225.83, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -37.13, -8.29, 233.89, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -31.52, -8.86, 244.51, 2, 0)
  28. MovementLoopAddLocation(NPC, -30.55, -9.13, 247.09, 2, 0)
  29. MovementLoopAddLocation(NPC, -27.84, -9.22, 250.48, 2, 0)
  30. MovementLoopAddLocation(NPC, -27.46, -9.97, 254.79, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -29.69, -8.98, 247.46, 2, 0)
  32. MovementLoopAddLocation(NPC, -36.00, -8.80, 238.65, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -38.88, -9.25, 238.78, 2, math.random(10, 20))
  34. end