lookoutx.lua 743 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : lookoutx.lua
  3. Script Purpose : Waypoint Path for lookoutx.lua
  4. Script Author : Devn00b
  5. Script Date : 05/09/2020 08:14:39 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, 20.12, 0.15, -95.87, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 7.2, -0.06, -109.07, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, -0.14, -0.1, -103.34, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 7.2, -0.06, -109.07, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 20.12, 0.15, -95.87, 2, math.random(0,10))
  23. end