malefic_arachnid6.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --[[
  2. Script Name : malefic_arachnid6.lua
  3. Script Purpose : Waypoint Path for malefic_arachnid6.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 01:08:53 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, -146.67, -0.25, -187.58, 2, 0)
  19. MovementLoopAddLocation(NPC, -145.48, -0.24, -189.23, 2, 0)
  20. MovementLoopAddLocation(NPC, -144.05, -0.24, -185.2, 2, 0)
  21. MovementLoopAddLocation(NPC, -148, -0.24, -183.35, 2, 0)
  22. MovementLoopAddLocation(NPC, -149.22, -0.24, -187.28, 2, 0)
  23. MovementLoopAddLocation(NPC, -147.6, -0.24, -188.29, 2, 0)
  24. MovementLoopAddLocation(NPC, -146.95, -0.26, -186.56, 2, 0)
  25. MovementLoopAddLocation(NPC, -144.42, -0.24, -185.61, 2, 0)
  26. MovementLoopAddLocation(NPC, -148.26, -0.24, -183.23, 2, 0)
  27. MovementLoopAddLocation(NPC, -145.97, -0.24, -184.62, 2, 0)
  28. MovementLoopAddLocation(NPC, -146.12, -0.23, -189.66, 2, 0)
  29. MovementLoopAddLocation(NPC, -144.31, -0.24, -185.6, 2, 0)
  30. MovementLoopAddLocation(NPC, -147.16, -0.24, -183.82, 2, 0)
  31. MovementLoopAddLocation(NPC, -146.93, -0.24, -183.76, 2, 0)
  32. MovementLoopAddLocation(NPC, -144.42, -0.24, -184.77, 2, 0)
  33. MovementLoopAddLocation(NPC, -145.4, -0.24, -187.19, 2, 0)
  34. MovementLoopAddLocation(NPC, -149.13, 0.33, -185.68, 2, 0)
  35. MovementLoopAddLocation(NPC, -147.41, -0.24, -188.78, 2, 0)
  36. MovementLoopAddLocation(NPC, -149.13, 0.33, -185.68, 2, 0)
  37. MovementLoopAddLocation(NPC, -145.4, -0.24, -187.19, 2, 0)
  38. MovementLoopAddLocation(NPC, -144.42, -0.24, -184.77, 2, 0)
  39. MovementLoopAddLocation(NPC, -146.93, -0.24, -183.76, 2, 0)
  40. MovementLoopAddLocation(NPC, -147.16, -0.24, -183.82, 2, 0)
  41. MovementLoopAddLocation(NPC, -144.31, -0.24, -185.6, 2, 0)
  42. MovementLoopAddLocation(NPC, -146.12, -0.23, -189.66, 2, 0)
  43. MovementLoopAddLocation(NPC, -145.97, -0.24, -184.62, 2, 0)
  44. MovementLoopAddLocation(NPC, -148.26, -0.24, -183.23, 2, 0)
  45. MovementLoopAddLocation(NPC, -144.42, -0.24, -185.61, 2, 0)
  46. MovementLoopAddLocation(NPC, -146.95, -0.26, -186.56, 2, 0)
  47. MovementLoopAddLocation(NPC, -147.6, -0.24, -188.29, 2, 0)
  48. MovementLoopAddLocation(NPC, -149.22, -0.24, -187.28, 2, 0)
  49. MovementLoopAddLocation(NPC, -148, -0.24, -183.35, 2, 0)
  50. MovementLoopAddLocation(NPC, -144.05, -0.24, -185.2, 2, 0)
  51. MovementLoopAddLocation(NPC, -145.48, -0.24, -189.23, 2, 0)
  52. MovementLoopAddLocation(NPC, -146.67, -0.25, -187.58, 2, 0)
  53. end