acoastalcrab430301.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/acoastalcrab430301.lua
  3. Script Purpose : Waypoint Path for acoastalcrab430301.lua
  4. Script Author : Rylec
  5. Script Date : 11-20-2019 06:59:11
  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, -78.55, -9.5, 114.1, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -82.77, -8.94, 116.54, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, -84.06, -8.52, 112.14, 2, 0)
  20. MovementLoopAddLocation(NPC, -88.64, -7.66, 103, 2, 0)
  21. MovementLoopAddLocation(NPC, -90.86, -7.57, 92.35, 2, 0)
  22. -- MovementLoopAddLocation(NPC, -96.65, -9.72, 87.8, 2, 0)
  23. MovementLoopAddLocation(NPC, -96.62, -9.71, 87.81, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, -76.59, -8.45, 90.06, 2, math.random(16, 24))
  25. -- MovementLoopAddLocation(NPC, -85.65, -9.47, 117.77, 2, 0)
  26. MovementLoopAddLocation(NPC, -85.69, -9.45, 117.68, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, -88, -8.62, 112.02, 2, 0)
  28. MovementLoopAddLocation(NPC, -90.73, -8.34, 107.5, 2, math.random(16, 24))
  29. -- MovementLoopAddLocation(NPC, -78.51, -9.51, 114.08, 2, 0)
  30. end