atriggerfish426624.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426624.lua
  3. Script Purpose : Waypoint Path for atriggerfish426624.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 09:26: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.05, -12.06, -85.82, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -30.35, -11.54, -81.96, 2, 0)
  19. MovementLoopAddLocation(NPC, -32.19, -11.41, -79.51, 2, 0)
  20. MovementLoopAddLocation(NPC, -41.37, -11.57, -69.45, 2, 0)
  21. MovementLoopAddLocation(NPC, -45.46, -12.26, -64.41, 2, 0)
  22. MovementLoopAddLocation(NPC, -48.28, -12.26, -62.95, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -46.29, -10.52, -52.17, 2, 0)
  24. MovementLoopAddLocation(NPC, -45.13, -10.51, -34.03, 2, 0)
  25. MovementLoopAddLocation(NPC, -42.52, -11.14, -24.55, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -34.83, -10.41, -1.74, 2, 0)
  27. MovementLoopAddLocation(NPC, -30.7, -11.79, 16.03, 2, 0)
  28. MovementLoopAddLocation(NPC, -30.29, -12.53, 19.19, 2, 0)
  29. MovementLoopAddLocation(NPC, -31.24, -13.36, 23.19, 2, 0)
  30. MovementLoopAddLocation(NPC, -32.33, -13.45, 24.13, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -30.95, -13.67, 35.64, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -33.05, -13.52, 31.5, 2, 0)
  33. MovementLoopAddLocation(NPC, -37.77, -13.96, 23.46, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -42.54, -10.47, 12.41, 2, 0)
  35. MovementLoopAddLocation(NPC, -46.63, -10.19, 4.43, 2, 0)
  36. MovementLoopAddLocation(NPC, -50.34, -11.08, -2.79, 2, math.random(10, 20))
  37. MovementLoopAddLocation(NPC, -48.54, -10.42, -4.88, 2, 0)
  38. MovementLoopAddLocation(NPC, -42.18, -10.36, -56.94, 2, 0)
  39. MovementLoopAddLocation(NPC, -39.08, -11.34, -70.87, 2, 0)
  40. MovementLoopAddLocation(NPC, -35.24, -11.95, -79.6, 2, math.random(10, 20))
  41. end