shriller.lua 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --[[
  2. Script Name : shriller.lua
  3. Script Purpose : Waypoint Path for shriller.lua
  4. Script Author : Devn00b
  5. Script Date : 04/28/2020 10:23:04 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, -10.2, 6.24, 5.87, 2, 1)
  19. MovementLoopAddLocation(NPC, -10.13, -0.08, -32.44, 2, 0)
  20. MovementLoopAddLocation(NPC, -5.94, -0.12, -33.58, 2, 0)
  21. MovementLoopAddLocation(NPC, 0.11, 0.52, -26.58, 2, 0)
  22. MovementLoopAddLocation(NPC, -0.2, -0.08, -24.3, 2, 0)
  23. MovementLoopAddLocation(NPC, 2.67, -0.09, -11.51, 2, 0)
  24. MovementLoopAddLocation(NPC, 7.39, 0.67, -9.46, 2, 0)
  25. MovementLoopAddLocation(NPC, 10.21, 1.28, -5.55, 2, 0)
  26. MovementLoopAddLocation(NPC, 11.2, 2.18, 0.74, 2, 0)
  27. MovementLoopAddLocation(NPC, 8.55, 3.11, 7.67, 2, 0)
  28. MovementLoopAddLocation(NPC, 7.55, 3.43, 9.92, 2, 0)
  29. MovementLoopAddLocation(NPC, -3.61, 5.16, 11.03, 2, 0)
  30. MovementLoopAddLocation(NPC, -9.18, 6.06, 6.98, 2, 0)
  31. MovementLoopAddLocation(NPC, -10.2, 6.24, 5.87, 2, 1)
  32. MovementLoopAddLocation(NPC, -9.18, 6.06, 6.98, 2, 0)
  33. MovementLoopAddLocation(NPC, -3.61, 5.16, 11.03, 2, 0)
  34. MovementLoopAddLocation(NPC, 7.55, 3.43, 9.92, 2, 0)
  35. MovementLoopAddLocation(NPC, 8.55, 3.11, 7.67, 2, 0)
  36. MovementLoopAddLocation(NPC, 11.2, 2.18, 0.74, 2, 0)
  37. MovementLoopAddLocation(NPC, 10.21, 1.28, -5.55, 2, 0)
  38. MovementLoopAddLocation(NPC, 7.39, 0.67, -9.46, 2, 0)
  39. MovementLoopAddLocation(NPC, 2.67, -0.09, -11.51, 2, 0)
  40. MovementLoopAddLocation(NPC, -0.2, -0.08, -24.3, 2, 0)
  41. MovementLoopAddLocation(NPC, 0.11, 0.52, -26.58, 2, 0)
  42. MovementLoopAddLocation(NPC, -5.94, -0.12, -33.58, 2, 0)
  43. MovementLoopAddLocation(NPC, -10.13, -0.08, -32.44, 2, 0)
  44. MovementLoopAddLocation(NPC, -10.2, 6.24, 5.87, 2, 1)
  45. end