bloodsaber_meddler.lua 612 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : bloodsaber_meddler.lua
  3. Script Purpose : Waypoint Path for bloodsaber_meddler.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 05:46: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, -14.95, -4, -136.73, 2, math.random(1,10))
  19. MovementLoopAddLocation(NPC, 2.33, 0.3, -136.54, 2, math.random(1,10))
  20. MovementLoopAddLocation(NPC, -14.95, -4, -136.73, 2, math.random(1,10))
  21. end