rifter_bleeder_2990.lua 860 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/DownBelow/rifter_bleeder_2990.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.03.26 02:03:33
  5. Script Purpose : Basic Pathing
  6. :
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -182.66, 1.17, -118.79, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -187.22, 1.17, -117.19, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -187.93, 1.17, -120.21, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -187.22, 1.17, -117.19, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -173.92, 1.17, -122.66, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -182.66, 1.17, -118.79, 2, math.random(0,5))
  24. end