alargecoastalcrab430600.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/alargecoastalcrab430600.lua
  3. Script Purpose : Waypoint Path for alargecoastalcrab430600.lua
  4. Script Author : Rylec
  5. Script Date : 11-22-2019 03:22:32
  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, -93.21, -8.69, 55.83, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -91.27, -8.31, 63.01, 2, 0)
  19. MovementLoopAddLocation(NPC, -90.16, -8.11, 65.6, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, -82.13, -7.21, 77.41, 2, 0)
  21. MovementLoopAddLocation(NPC, -75.46, -8.05, 84.77, 2, 0)
  22. MovementLoopAddLocation(NPC, -67.2, -7.51, 88.9, 2, math.random(16, 24))
  23. -- MovementLoopAddLocation(NPC, -96.71, -9.73, 78.12, 2, 0)
  24. MovementLoopAddLocation(NPC, -96.67, -9.72, 78.14, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, -66.21, -7.49, 85.83, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, -94.68, -8.99, 59.48, 2, 0)
  27. -- MovementLoopAddLocation(NPC, -97.3, -9.74, 58.19, 2, 0)
  28. MovementLoopAddLocation(NPC, -97.3, -9.73, 58.35, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, -97.28, -9.56, 65.73, 2, 0)
  30. MovementLoopAddLocation(NPC, -93.94, -8.81, 70.75, 2, math.random(16, 24))
  31. MovementLoopAddLocation(NPC, -94.68, -9.08, 78.35, 2, 0)
  32. MovementLoopAddLocation(NPC, -93.46, -8.74, 77.4, 12, math.random(16, 24))
  33. MovementLoopAddLocation(NPC, -89.68, -8.01, 60, 2, math.random(16, 24))
  34. end