atriggerfish427003.lua 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish427003.lua
  3. Script Purpose : Waypoint Path for atriggerfish427003.lua
  4. Script Author : Rylec
  5. Script Date : 12-31-2019 09:28:26
  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, -38.92, -12.1, -32.82, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -21.51, -11.63, -36.13, 2, 0)
  19. MovementLoopAddLocation(NPC, 2.92, -12.16, -53.2, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -33.06, -11.5, -34.08, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, -33.09, -11.33, -30.2, 2, 0)
  22. MovementLoopAddLocation(NPC, -33.67, -10.59, -28.4, 2, 0)
  23. MovementLoopAddLocation(NPC, -34.11, -10.58, -20.44, 2, 0)
  24. MovementLoopAddLocation(NPC, -38.99, -11.23, -13.43, 2, 0)
  25. MovementLoopAddLocation(NPC, -36.7, -10.53, -7.35, 2, 0)
  26. MovementLoopAddLocation(NPC, -29.84, -10.5, -1.61, 2, 0)
  27. MovementLoopAddLocation(NPC, -24.02, -11.07, 0.98, 2, 0)
  28. MovementLoopAddLocation(NPC, -21.72, -11.5, 4.06, 2, 0)
  29. MovementLoopAddLocation(NPC, -20.04, -12.58, 6.09, 2, 0)
  30. MovementLoopAddLocation(NPC, -16.15, -12.91, 7.21, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, -19.5, -12.42, 0.57, 2, 0)
  32. MovementLoopAddLocation(NPC, -20.36, -12.05, -9.54, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, -15.45, -11.99, -2.31, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, -25.46, -11.96, -18.45, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -33.3, -12.23, -25.36, 2, 0)
  36. end