bloodsaber_inquisitor4.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : bloodsaber_inquisitor4.lua
  3. Script Purpose : Waypoint Path for bloodsaber_inquisitor4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 04:33: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, -32.55, -0.48, -174.09, 2, 0)
  18. MovementLoopAddLocation(NPC, -40.33, -0.8, -174.96, 2, 0)
  19. MovementLoopAddLocation(NPC, -40.93, -0.18, -168.31, 2, 0)
  20. MovementLoopAddLocation(NPC, -37.53, -0.18, -172.24, 2, 0)
  21. MovementLoopAddLocation(NPC, -35.71, -0.18, -165.33, 2, 0)
  22. MovementLoopAddLocation(NPC, -29.5, 0.04, -166.08, 2, 0)
  23. MovementLoopAddLocation(NPC, -28.82, -0.8, -187.21, 2, 0)
  24. MovementLoopAddLocation(NPC, -17.04, -0.18, -188.03, 2, 0)
  25. MovementLoopAddLocation(NPC, -19.05, -0.18, -187.03, 2, 0)
  26. MovementLoopAddLocation(NPC, -25.54, 1.16, -171.52, 2, 0)
  27. MovementLoopAddLocation(NPC, -33.21, -0.18, -171.69, 2, 0)
  28. MovementLoopAddLocation(NPC, -28.57, -0.8, -178.8, 2, 0)
  29. MovementLoopAddLocation(NPC, -35.98, -0.18, -165.08, 2, 0)
  30. MovementLoopAddLocation(NPC, -40.97, -0.18, -171.54, 2, 0)
  31. MovementLoopAddLocation(NPC, -35.98, -0.18, -165.08, 2, 0)
  32. MovementLoopAddLocation(NPC, -28.57, -0.8, -178.8, 2, 0)
  33. MovementLoopAddLocation(NPC, -33.21, -0.18, -171.69, 2, 0)
  34. MovementLoopAddLocation(NPC, -25.54, 1.16, -171.52, 2, 0)
  35. MovementLoopAddLocation(NPC, -19.05, -0.18, -187.03, 2, 0)
  36. MovementLoopAddLocation(NPC, -17.04, -0.18, -188.03, 2, 0)
  37. MovementLoopAddLocation(NPC, -28.82, -0.8, -187.21, 2, 0)
  38. MovementLoopAddLocation(NPC, -29.5, 0.04, -166.08, 2, 0)
  39. MovementLoopAddLocation(NPC, -35.71, -0.18, -165.33, 2, 0)
  40. MovementLoopAddLocation(NPC, -37.53, -0.18, -172.24, 2, 0)
  41. MovementLoopAddLocation(NPC, -40.93, -0.18, -168.31, 2, 0)
  42. MovementLoopAddLocation(NPC, -40.33, -0.8, -174.96, 2, 0)
  43. MovementLoopAddLocation(NPC, -32.55, -0.48, -174.09, 2, 0)
  44. end