acoastalcrab430316.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/acoastalcrab430316.lua
  3. Script Purpose : Waypoint Path for acoastalcrab430316.lua
  4. Script Author : Rylec
  5. Script Date : 11-25-2019 05:44:10
  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, -86.04, -8.35, 39.59, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -80.14, -7.84, 40.01, 2, 0)
  19. MovementLoopAddLocation(NPC, -65.97, -8.4, 33.65, 2, math.random(16, 24))
  20. -- MovementLoopAddLocation(NPC, -64.24, -9.77, 29.18, 2, 0)
  21. MovementLoopAddLocation(NPC, -64.3, -9.75, 29.19, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, -85.93, -9.01, 34.72, 2, 0)
  23. MovementLoopAddLocation(NPC, -87.79, -9.08, 35.79, 2, 0)
  24. -- MovementLoopAddLocation(NPC, -90.33, -9.74, 35.55, 2, 0)
  25. MovementLoopAddLocation(NPC, -90.21, -9.7, 35.54, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, -66.34, -8.3, 33.51, 2, math.random(16, 24))
  27. MovementLoopAddLocation(NPC, -83.99, -8.99, 32.71, 2, 0)
  28. -- MovementLoopAddLocation(NPC, -87.65, -9.53, 32.97, 2, 0)
  29. MovementLoopAddLocation(NPC, -87.64, -9.51, 33.09, 2, math.random(16, 24))
  30. MovementLoopAddLocation(NPC, -87.57, -8.46, 40.06, 2, 0)
  31. MovementLoopAddLocation(NPC, -90, -8.09, 47.18, 2, math.random(16, 24))
  32. end