atriggerfish426124.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atriggerfish426124.lua
  3. Script Purpose : Waypoint Path for atriggerfish426124.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:45:07
  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, -99.39, -12.39, 227.14, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -100.27, -13.82, 225.15, 2, 0)
  19. MovementLoopAddLocation(NPC, -109.52, -13.63, 229.37, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, -105.47, -14.81, 232.7, 2, 0)
  21. MovementLoopAddLocation(NPC, -103.42, -14.98, 234.4, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, -107.44, -12.03, 220.58, 2, 0)
  23. MovementLoopAddLocation(NPC, -106.56, -12.46, 214.58, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -99.65, -12.41, 214.84, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, -132.03, -13.71, 225.15, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -101.06, -13.42, 216.85, 2, 0)
  27. MovementLoopAddLocation(NPC, -96.2, -14.09, 213.99, 2, 0)
  28. MovementLoopAddLocation(NPC, -94.49, -13.62, 214.44, 2, 0)
  29. MovementLoopAddLocation(NPC, -90.56, -13.77, 215.66, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, -95.56, -13.58, 222.92, 2, 0)
  31. MovementLoopAddLocation(NPC, -97.57, -12.64, 225.96, 2, 0)
  32. end