ire_warlock3.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : ire_warlock3.lua
  3. Script Purpose : Waypoint Path for ire_warlock3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 05:13:39 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -9.83, -0.18, -152.56, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, -9.63, -0.14, -154.74, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, -15.09, 0.05, -152.49, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, -13.61, 0.27, -154.8, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, -15.09, -0.04, -155.1, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, -13.89, -0.01, -152.96, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, -9.86, -0.25, -153.81, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, -11.61, -0.08, -152.85, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, -10.68, 0.27, -155.11, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, -11.61, -0.08, -152.85, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, -9.86, -0.25, -153.81, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, -13.89, -0.01, -152.96, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, -15.09, -0.04, -155.1, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, -13.61, 0.27, -154.8, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, -15.09, 0.05, -152.49, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, -9.63, -0.14, -154.74, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, -9.83, -0.18, -152.56, 2, math.random(0,15))
  34. end