acoastalcrab430305.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/acoastalcrab430305.lua
  3. Script Purpose : Waypoint Path for acoastalcrab430305.lua
  4. Script Author : Rylec
  5. Script Date : 11-22-2019 03:22:25
  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, -91.78, -8.46, 62.13, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -91.82, -8.47, 69.33, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, -91.39, -8.52, 60.48, 2, math.random(16, 24))
  20. MovementLoopAddLocation(NPC, -94.35, -8.94, 57.44, 2, 0)
  21. -- MovementLoopAddLocation(NPC, -97.18, -9.76, 55.45, 2, 0)
  22. MovementLoopAddLocation(NPC, -97.13, -9.76, 55.48, 2, math.random(16, 24))
  23. MovementLoopAddLocation(NPC, -94.69, -9.02, 57.16, 2, 0)
  24. -- MovementLoopAddLocation(NPC, -97.34, -9.72, 59.3, 2, 0)
  25. MovementLoopAddLocation(NPC, -97.3, -9.7, 59.29, 2, math.random(16, 24))
  26. MovementLoopAddLocation(NPC, -94.31, -8.91, 59.03, 2, 0)
  27. MovementLoopAddLocation(NPC, -55.84, -8.39, 74.65, 2, 0)
  28. MovementLoopAddLocation(NPC, -53.49, -8.83, 75.89, 2, 0)
  29. -- MovementLoopAddLocation(NPC, -51.73, -9.26, 76.24, 2, 0)
  30. MovementLoopAddLocation(NPC, -51.83, -9.23, 76.25, 2, math.random(16, 24))
  31. -- MovementLoopAddLocation(NPC, -97.14, -9.77, 76.36, 2, 0)
  32. MovementLoopAddLocation(NPC, -97.09, -9.76, 76.26, 2, math.random(16, 24))
  33. MovementLoopAddLocation(NPC, -94.58, -8.94, 68.58, 2, 0)
  34. MovementLoopAddLocation(NPC, -90.06, -8.09, 63.56, 2, math.random(16, 24))
  35. end