Raugal.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : Raugal.lua
  3. Script Purpose : Waypoint Path for Raugal.lua
  4. Script Author : Cynnar
  5. Script Date : 11/03/2019 11:33:04 AM
  6. Script Notes : Random locations no way to verify on 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, 217.99, -3.98, 164.75, 2, 0)
  18. MovementLoopAddLocation(NPC, 222.76, -3.98, 164.03, 2, 0)
  19. MovementLoopAddLocation(NPC, 222.99, -3.98, 159.45, 2, 0)
  20. MovementLoopAddLocation(NPC, 214.88, -3.99, 158.12, 2, 5)
  21. MovementLoopAddLocation(NPC, 215.07, -3.98, 155.44, 2, 0)
  22. MovementLoopAddLocation(NPC, 214.77, -3.98, 152.37, 2, 0)
  23. MovementLoopAddLocation(NPC, 214.99, -3.98, 150.64, 2, 0)
  24. MovementLoopAddLocation(NPC, 216.23, -3.98, 146.88, 2, 0)
  25. MovementLoopAddLocation(NPC, 216.52, 2.84, 132.02, 2, 0)
  26. MovementLoopAddLocation(NPC, 217.04, 2.81, 130.56, 2, 0)
  27. MovementLoopAddLocation(NPC, 218, 2.81, 129.67, 2, 0)
  28. MovementLoopAddLocation(NPC, 219.35, 2.81, 129.38, 2, 0)
  29. MovementLoopAddLocation(NPC, 220.54, 2.81, 129.82, 2, 0)
  30. MovementLoopAddLocation(NPC, 221.38, 2.81, 130.95, 2, 0)
  31. MovementLoopAddLocation(NPC, 221.71, 2.81, 139.43, 2, 0)
  32. MovementLoopAddLocation(NPC, 221.01, 2.81, 152.04, 2, 0)
  33. MovementLoopAddLocation(NPC, 219.89, 2.81, 154.55, 2, 0)
  34. MovementLoopAddLocation(NPC, 221.01, 2.81, 152.04, 2, 0)
  35. MovementLoopAddLocation(NPC, 221.71, 2.81, 139.43, 2, 0)
  36. MovementLoopAddLocation(NPC, 221.38, 2.81, 130.95, 2, 0)
  37. MovementLoopAddLocation(NPC, 220.54, 2.81, 129.82, 2, 0)
  38. MovementLoopAddLocation(NPC, 219.35, 2.81, 129.38, 2, 0)
  39. MovementLoopAddLocation(NPC, 218, 2.81, 129.67, 2, 0)
  40. MovementLoopAddLocation(NPC, 217.04, 2.81, 130.56, 2, 0)
  41. MovementLoopAddLocation(NPC, 216.52, 2.84, 132.02, 2, 0)
  42. MovementLoopAddLocation(NPC, 216.23, -3.98, 146.88, 2, 0)
  43. MovementLoopAddLocation(NPC, 214.99, -3.98, 150.64, 2, 0)
  44. MovementLoopAddLocation(NPC, 214.77, -3.98, 152.37, 2, 0)
  45. MovementLoopAddLocation(NPC, 215.07, -3.98, 155.44, 2, 0)
  46. MovementLoopAddLocation(NPC, 214.88, -3.99, 158.12, 2, 0)
  47. MovementLoopAddLocation(NPC, 215.11, -3.98, 165.18, 2, 0)
  48. end