asmallcoastalcrab430718.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430718.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430718.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:42:20
  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, -42.96, -4.92, 209.22, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -44.44, -5.93, 207.51, 2, 0)
  19. MovementLoopAddLocation(NPC, -45.33, -6.69, 206.83, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -57.25, -8.09, 213.98, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -56.21, -7.98, 215.67, 2, 0)
  22. MovementLoopAddLocation(NPC, -56.29, -8.36, 218.24, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -55.15, -7.82, 214.00, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -57.43, -8.32, 210.77, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -52.60, -8.03, 208.28, 2, 0)
  26. MovementLoopAddLocation(NPC, -47.96, -8.43, 204.32, 2, 0)
  27. MovementLoopAddLocation(NPC, -46.79, -8.37, 203.75, 2, 0)
  28. MovementLoopAddLocation(NPC, -45.17, -8.99, 201.82, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, -45.77, -8.71, 202.42, 2, 0)
  30. MovementLoopAddLocation(NPC, -47.36, -9.08, 202.50, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -47.01, -8.51, 203.49, 2, 0)
  32. MovementLoopAddLocation(NPC, -44.16, -6.81, 206.04, 2, 0)
  33. MovementLoopAddLocation(NPC, -43.74, -5.31, 207.99, 2, 0)
  34. end