acoastalcrab430300.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/acoastalcrab430300.lua
  3. Script Purpose : Waypoint Path for acoastalcrab430300.lua
  4. Script Author : Rylec
  5. Script Date : 11-20-2019 06:59:05
  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, -79.66, -7.76, 106.57, 2, math.random(16, 24))
  18. MovementLoopAddLocation(NPC, -74.55, -8.82, 104.84, 2, math.random(16, 24))
  19. MovementLoopAddLocation(NPC, -89.7, -8.46, 109.98, 2, math.random(16, 24))
  20. -- MovementLoopAddLocation(NPC, -97.02, -9.65, 97.75, 2, 0)
  21. MovementLoopAddLocation(NPC, -96.97, -9.64, 97.79, 2, math.random(16, 24))
  22. MovementLoopAddLocation(NPC, -87.44, -7.77, 104.52, 2, 0)
  23. MovementLoopAddLocation(NPC, -84.72, -7.66, 105.45, 2, math.random(16, 24))
  24. MovementLoopAddLocation(NPC, -84.85, -8.66, 113.06, 2, math.random(16, 24))
  25. MovementLoopAddLocation(NPC, -89.75, -8.06, 101.86, 2, 0)
  26. MovementLoopAddLocation(NPC, -91.79, -7.88, 90.41, 2, 0)
  27. -- MovementLoopAddLocation(NPC, -96.98, -9.75, 85.71, 2, 0)
  28. MovementLoopAddLocation(NPC, -96.89, -9.75, 85.87, 2, math.random(16, 24))
  29. MovementLoopAddLocation(NPC, -80.36, -7.13, 104.4, 2, 0)
  30. end