bloodsaber_initiate.lua 615 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : bloodsaber_initiate.lua
  3. Script Purpose : Waypoint Path for bloodsaber_initiate.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 05:44:20 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, -11.17, -4, -138.13, 2, math.random(1,10))
  19. MovementLoopAddLocation(NPC, 2.51, 0.3, -138.66, 2, math.random(1,10))
  20. MovementLoopAddLocation(NPC, -11.17, -4, -138.13, 2, math.random(1,10))
  21. end