asmallcoastalcrab430774.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/asmallcoastalcrab430774.lua
  3. Script Purpose : Waypoint Path for asmallcoastalcrab430774.lua
  4. Script Author : Rylec
  5. Script Date : 10-19-2019 12:42:06
  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, -25.34, -9.33, 254.01, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -24.82, -8.67, 251.72, 2, 0)
  19. MovementLoopAddLocation(NPC, -32.26, -8.95, 244.01, 2, 0)
  20. MovementLoopAddLocation(NPC, -41.14, -9.48, 237.69, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -33.01, -9.05, 243.73, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -25.14, -7.92, 237.34, 2, 0)
  23. MovementLoopAddLocation(NPC, -19.83, -7.82, 236.45, 2, 0)
  24. MovementLoopAddLocation(NPC, -16.57, -7.84, 239.38, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -23.14, -7.85, 239.77, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -24.29, -7.89, 239.11, 2, 0)
  27. MovementLoopAddLocation(NPC, -36.96, -8.01, 224.80, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -25.15, -8.94, 252.59, 2, 0)
  29. MovementLoopAddLocation(NPC, -23.25, -9.18, 255.15, 2, 0)
  30. MovementLoopAddLocation(NPC, -22.40, -9.60, 256.95, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -27.61, -8.55, 247.96, 2, 0)
  32. MovementLoopAddLocation(NPC, -30.29, -8.62, 244.98, 2, 0)
  33. MovementLoopAddLocation(NPC, -33.81, -8.46, 238.07, 2, 0)
  34. MovementLoopAddLocation(NPC, -39.57, -8.05, 229.82, 2, 0)
  35. MovementLoopAddLocation(NPC, -40.08, -8.02, 227.58, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, -28.70, -7.95, 233.56, 2, 0)
  37. MovementLoopAddLocation(NPC, -26.54, -7.95, 235.42, 2, math.random(10, 20))
  38. MovementLoopAddLocation(NPC, -45.03, -9.41, 233.79, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, -42.18, -9.20, 235.18, 2, 0)
  40. MovementLoopAddLocation(NPC, -32.70, -9.33, 245.56, 2, 0)
  41. MovementLoopAddLocation(NPC, -25.65, -9.02, 252.43, 2, 0)
  42. end