asmallcoastalcrab430775.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430775.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430775.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:42:09
  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, -32.16, -7.98, 233.72, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -30.60, -8.56, 244.27, 2, 0)
  19. MovementLoopAddLocation(NPC, -30.02, -8.78, 246.02, 2, 0)
  20. MovementLoopAddLocation(NPC, -30.20, -9.49, 248.97, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -30.22, -8.83, 246.02, 2, 0)
  22. MovementLoopAddLocation(NPC, -39.94, -7.96, 225.74, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -28.36, -7.84, 237.38, 2, 0)
  24. MovementLoopAddLocation(NPC, -27.19, -7.89, 239.71, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -30.06, -7.96, 238.34, 2, 0)
  26. MovementLoopAddLocation(NPC, -38.02, -8.22, 232.72, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, -28.46, -9.03, 249.01, 2, 0)
  28. MovementLoopAddLocation(NPC, -28.01, -9.13, 249.93, 2, 0)
  29. MovementLoopAddLocation(NPC, -26.39, -9.10, 251.87, 2, 0)
  30. MovementLoopAddLocation(NPC, -26.15, -9.28, 253.01, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -26.95, -9.69, 254.03, 2, 0)
  32. MovementLoopAddLocation(NPC, -28.00, -10.09, 254.80, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -27.10, -9.67, 253.75, 2, 0)
  34. MovementLoopAddLocation(NPC, -25.00, -7.95, 234.80, 2, math.random(10, 20))
  35. end