lookoutxx.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : lookoutxx.lua
  3. Script Purpose : Waypoint Path for lookoutxx.lua
  4. Script Author : Devn00b
  5. Script Date : 05/09/2020 08:17:55 PM
  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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 21, -0.08, -107.49, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 23.48, -0.05, -104.98, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 17.01, 0.16, -98.81, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 19.83, 0.16, -96.39, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 6.53, -0.05, -108.96, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 0.86, -0.09, -104.12, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, -5.34, 0.44, -98.1, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 0.86, -0.09, -104.12, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 6.53, -0.05, -108.96, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 19.83, 0.16, -96.39, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 17.01, 0.16, -98.81, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 23.48, -0.05, -104.98, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 21, -0.08, -107.49, 2, math.random(0,10))
  31. end