tabina.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : soothsayertabina.lua
  3. Script Purpose : Waypoint Path for soothsayertabina.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 01:54:12 AM
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 839.82, -25.47, -0.55, 2, 45)
  19. MovementLoopAddLocation(NPC, 848.38, -25.46, 13.55, 2, 0)
  20. MovementLoopAddLocation(NPC, 858.11, -25.47, 22.81, 2, 0)
  21. MovementLoopAddLocation(NPC, 862.36, -25.51, 34.89, 2, 0)
  22. MovementLoopAddLocation(NPC, 881.65, -25.43, 35, 2, 0)
  23. MovementLoopAddLocation(NPC, 893.92, -25.48, 29.49, 2, 0)
  24. MovementLoopAddLocation(NPC, 900.82, -25.43, 6.34, 2, 0)
  25. MovementLoopAddLocation(NPC, 899.15, -23.46, -35.74, 2, 0)
  26. MovementLoopAddLocation(NPC, 892.55, -25.38, -58.9, 2, 0)
  27. MovementLoopAddLocation(NPC, 812.24, -20.4, -59.15, 2, 0)
  28. MovementLoopAddLocation(NPC, 792.62, -21.09, -57.06, 2, 0)
  29. MovementLoopAddLocation(NPC, 775.75, -20.64, -24.43, 2, 60)
  30. MovementLoopAddLocation(NPC, 792.62, -21.09, -57.06, 2, 0)
  31. MovementLoopAddLocation(NPC, 812.24, -20.4, -59.15, 2, 0)
  32. MovementLoopAddLocation(NPC, 892.55, -25.38, -58.9, 2, 0)
  33. MovementLoopAddLocation(NPC, 899.15, -23.46, -35.74, 2, 0)
  34. MovementLoopAddLocation(NPC, 900.82, -25.43, 6.34, 2, 0)
  35. MovementLoopAddLocation(NPC, 893.92, -25.48, 29.49, 2, 0)
  36. MovementLoopAddLocation(NPC, 881.65, -25.43, 35, 2, 0)
  37. MovementLoopAddLocation(NPC, 862.36, -25.51, 34.89, 2, 0)
  38. MovementLoopAddLocation(NPC, 858.11, -25.47, 22.81, 2, 0)
  39. MovementLoopAddLocation(NPC, 848.38, -25.46, 13.55, 2, 0)
  40. MovementLoopAddLocation(NPC, 839.82, -25.47, -0.55, 2, 45)
  41. end