bloodsaber_initiate5.lua 610 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : bloodsaber_initiate5.lua
  3. Script Purpose : Waypoint Path for bloodsaber_initiate5.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 06:15:18 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, 7.15, 0, -130.79, 2, math.random(1,20))
  19. MovementLoopAddLocation(NPC, 14.36, 0, -138.67, 2, math.random(1,30))
  20. MovementLoopAddLocation(NPC, 7.15, 0, -130.79, 2, math.random(1,20))
  21. end