bloodsaber_meddler2.lua 986 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : bloodsaber_meddler2.lua
  3. Script Purpose : Waypoint Path for bloodsaber_meddler2.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 06:09:08 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, 27.07, -4, -141.64, 2, math.random(1,20))
  19. MovementLoopAddLocation(NPC, 27.25, -4, -137.87, 2, 0)
  20. MovementLoopAddLocation(NPC, 29.98, -4, -137.97, 2, math.random(1,20))
  21. MovementLoopAddLocation(NPC, 26.53, -4, -137.93, 2, 0)
  22. MovementLoopAddLocation(NPC, 27.72, -4, -134.6, 2, math.random(1,20))
  23. MovementLoopAddLocation(NPC, 26.53, -4, -137.93, 2, 0)
  24. MovementLoopAddLocation(NPC, 29.98, -4, -137.97, 2, math.random(1,20))
  25. MovementLoopAddLocation(NPC, 27.25, -4, -137.87, 2, 0)
  26. MovementLoopAddLocation(NPC, 27.07, -4, -141.64, 2, math.random(1,20))
  27. end