tomb_vermin5.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. --[[
  2. Script Name : tomb_vermin5.lua
  3. Script Purpose : Waypoint Path for tomb_vermin5.lua
  4. Script Author : Devn00b
  5. Script Date : 06/12/2020 12:22:46 AM
  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, 47.99, -0.34, -145.07, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, 37.8, -0.34, -137.84, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 37.97, -0.1, -149.2, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 56.52, 0.03, -148.89, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 55.53, 0.04, -130.46, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 13.65, 0.04, -130.48, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 13.48, 0.04, -134.28, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 37.16, -0.34, -133.84, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 51.75, 0.04, -150.61, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 38.18, -0.34, -146.03, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 38, -0.34, -133.74, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 46.52, -0.34, -133.83, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 47.94, -0.34, -144.56, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 46.52, -0.34, -133.83, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 38, -0.34, -133.74, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 38.18, -0.34, -146.03, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 51.75, 0.04, -150.61, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 37.16, -0.34, -133.84, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 13.48, 0.04, -134.28, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 13.65, 0.04, -130.48, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 55.53, 0.04, -130.46, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 56.52, 0.03, -148.89, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 37.97, -0.1, -149.2, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 37.8, -0.34, -137.84, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 47.99, -0.34, -145.07, 2, math.random(0,5))
  42. end