alethrillix2.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : alethrillix2.lua
  3. Script Purpose : Waypoint Path for alethrillix2.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 05:26:49 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, 218.24, -6.89, -37.96, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 219.66, -6.92, -41.43, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 216.23, -6.96, -43.51, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 215.38, -6.97, -39.25, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 219.18, -6.9, -41.67, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 218.96, -6.89, -38.93, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 216.84, -6.94, -40.84, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 215.44, -6.97, -39.17, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 216.84, -6.94, -40.84, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 218.96, -6.89, -38.93, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 219.18, -6.9, -41.67, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 215.38, -6.97, -39.25, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 216.23, -6.96, -43.51, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 219.66, -6.92, -41.43, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 218.24, -6.89, -37.96, 2, math.random(0,15))
  32. end