meddlerx.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : meddlerx.lua
  3. Script Purpose : Waypoint Path for meddlerx.lua
  4. Script Author : Devn00b
  5. Script Date : 05/09/2020 08:10:36 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, -3.89, 0.19, -99.26, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 1.33, -0.09, -104.02, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 6.62, -0.06, -109.08, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 7.08, 0, -127.38, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 6.54, -0.05, -108.88, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 15.65, 0.14, -100.64, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 21.78, -0.06, -105.33, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 24.52, -0.07, -103.82, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 21.78, -0.06, -105.33, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 15.65, 0.14, -100.64, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 6.54, -0.05, -108.88, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 7.08, 0, -127.38, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 6.62, -0.06, -109.08, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 1.33, -0.09, -104.02, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, -3.89, 0.19, -99.26, 2, math.random(0,10))
  33. end