festering_seer.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : festering_seer.lua
  3. Script Purpose : Waypoint Path for festering_seer.lua
  4. Script Author : Devn00b
  5. Script Date : 06/24/2020 03:18:26 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, 141.26, 0.01, -148.65, 2, math.random(0,25))
  18. MovementLoopAddLocation(NPC, 139.53, 0.28, -146.77, 2, math.random(0,25))
  19. MovementLoopAddLocation(NPC, 139.56, 0.05, -148.78, 2, math.random(0,25))
  20. MovementLoopAddLocation(NPC, 136.63, 0.08, -148.03, 2, math.random(0,25))
  21. MovementLoopAddLocation(NPC, 136.44, 0, -143.97, 2, math.random(0,25))
  22. MovementLoopAddLocation(NPC, 137.07, 0.1, -148.46, 2, math.random(0,25))
  23. MovementLoopAddLocation(NPC, 141.76, 0, -147.03, 2, math.random(0,25))
  24. MovementLoopAddLocation(NPC, 141.99, 0.05, -143.6, 2, math.random(0,25))
  25. MovementLoopAddLocation(NPC, 136.76, 0, -143.86, 2, math.random(0,25))
  26. MovementLoopAddLocation(NPC, 135.44, 0.02, -146.38, 2, math.random(0,25))
  27. MovementLoopAddLocation(NPC, 137.25, 0.15, -146.95, 2, math.random(0,25))
  28. MovementLoopAddLocation(NPC, 141.22, 0, -148.11, 2, math.random(0,25))
  29. MovementLoopAddLocation(NPC, 139.58, 0.28, -146.77, 2, math.random(0,25))
  30. MovementLoopAddLocation(NPC, 135.9, 0.04, -146.97, 2, math.random(0,25))
  31. MovementLoopAddLocation(NPC, 139.58, 0.28, -146.77, 2, math.random(0,25))
  32. MovementLoopAddLocation(NPC, 141.22, 0, -148.11, 2, math.random(0,25))
  33. MovementLoopAddLocation(NPC, 137.25, 0.15, -146.95, 2, math.random(0,25))
  34. MovementLoopAddLocation(NPC, 135.44, 0.02, -146.38, 2, math.random(0,25))
  35. MovementLoopAddLocation(NPC, 136.76, 0, -143.86, 2, math.random(0,25))
  36. MovementLoopAddLocation(NPC, 141.99, 0.05, -143.6, 2, math.random(0,25))
  37. MovementLoopAddLocation(NPC, 141.76, 0, -147.03, 2, math.random(0,25))
  38. MovementLoopAddLocation(NPC, 137.07, 0.1, -148.46, 2, math.random(0,25))
  39. MovementLoopAddLocation(NPC, 136.44, 0, -143.97, 2, math.random(0,25))
  40. MovementLoopAddLocation(NPC, 136.63, 0.08, -148.03, 2, math.random(0,25))
  41. MovementLoopAddLocation(NPC, 139.56, 0.05, -148.78, 2, math.random(0,25))
  42. MovementLoopAddLocation(NPC, 139.53, 0.28, -146.77, 2, math.random(0,25))
  43. MovementLoopAddLocation(NPC, 141.26, 0.01, -148.65, 2, math.random(0,25))
  44. end