bloodsaber_initiate4.lua 725 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : bloodsaber_initiate4.lua
  3. Script Purpose : Waypoint Path for bloodsaber_initiate4.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 06:12:45 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, 24.88, -4, -137.96, 2, math.random(1,10))
  19. MovementLoopAddLocation(NPC, 14.94, 0, -137.82, 2, 0)
  20. MovementLoopAddLocation(NPC, 11.9, 0, -134.19, 2, math.random(1,15))
  21. MovementLoopAddLocation(NPC, 14.94, 0, -137.82, 2, 0)
  22. MovementLoopAddLocation(NPC, 24.88, -4, -137.96, 2, math.random(1,10))
  23. end