bloodsaber_initiate2.lua 613 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : bloodsabe_initiate2.lua
  3. Script Purpose : Waypoint Path for bloodsabe_initiate2.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 05:46: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, -12.65, -4, -137.81, 2, math.random(1,10))
  19. MovementLoopAddLocation(NPC, 1.24, 0, -137.37, 2, math.random(1,10))
  20. MovementLoopAddLocation(NPC, -12.65, -4, -137.81, 2, math.random(1,10))
  21. end