atriggerfish426086.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426086.lua
  3. Script Purpose : Waypoint Path for atriggerfish426086.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:46:40
  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, -104.58, -13.62, 220.98, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -110.26, -12.48, 219.75, 2, 0)
  19. MovementLoopAddLocation(NPC, -115.86, -12.45, 221.89, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -114.41, -12.28, 218.94, 2, 0)
  21. MovementLoopAddLocation(NPC, -85.02, -11.54, 185.99, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -94.44, -12.45, 223.24, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -96.37, -13.23, 224.04, 2, 0)
  24. MovementLoopAddLocation(NPC, -109.54, -13.66, 218.93, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -132.2, -13.7, 225.2, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -127.69, -14.15, 223.98, 2, 0)
  27. MovementLoopAddLocation(NPC, -106.87, -13.62, 195.78, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -111.67, -12.47, 203.69, 2, 0)
  29. MovementLoopAddLocation(NPC, -111.32, -12.45, 210.88, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -107.27, -13.02, 214.6, 2, 0)
  31. end