asmallcoastalcrab430767.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430767.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430767.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:41:50
  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, -28.12, -7.93, 242.43, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -28.18, -7.90, 240.48, 2, 0)
  19. MovementLoopAddLocation(NPC, -36.09, -7.99, 228.60, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -32.08, -8.18, 237.48, 2, 0)
  21. MovementLoopAddLocation(NPC, -31.91, -8.35, 239.49, 2, 0)
  22. MovementLoopAddLocation(NPC, -31.14, -8.32, 240.70, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -31.34, -8.24, 239.49, 2, 0)
  24. MovementLoopAddLocation(NPC, -28.74, -7.99, 232.29, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -31.73, -7.98, 232.08, 2, 0)
  26. MovementLoopAddLocation(NPC, -40.05, -9.26, 237.60, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -33.32, -7.97, 232.40, 2, 0)
  28. MovementLoopAddLocation(NPC, -32.42, -7.99, 231.88, 2, 0)
  29. MovementLoopAddLocation(NPC, -31.08, -7.99, 230.47, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -26.02, -7.85, 242.88, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -16.10, -7.88, 241.70, 2, math.random(10, 20))
  32. end