shriller17.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : shriller17.lua
  3. Script Purpose : Waypoint Path for shriller17.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 02:23:48 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, -126.8, -0.12, -124.74, 2, 0)
  19. MovementLoopAddLocation(NPC, -128.34, -0.12, -136.19, 2, 0)
  20. MovementLoopAddLocation(NPC, -147.06, -0.05, -138.74, 2, 0)
  21. MovementLoopAddLocation(NPC, -159.09, 0, -134.09, 2, 0)
  22. MovementLoopAddLocation(NPC, -158.12, -0.11, -119.96, 2, 0)
  23. MovementLoopAddLocation(NPC, -154.12, -0.05, -96.36, 2, 0)
  24. MovementLoopAddLocation(NPC, -147.81, -0.1, -84.18, 2, 0)
  25. MovementLoopAddLocation(NPC, -168.98, -0.27, -73.79, 2, 0)
  26. MovementLoopAddLocation(NPC, -182.93, -0.11, -73.04, 2, 0)
  27. MovementLoopAddLocation(NPC, -188.84, 0.41, -72.02, 2, 0)
  28. MovementLoopAddLocation(NPC, -192.35, -0.1, -63.76, 2, 0)
  29. MovementLoopAddLocation(NPC, -190.13, 0.47, -48.1, 2, 0)
  30. MovementLoopAddLocation(NPC, -176.04, -0.09, -33.4, 2, 0)
  31. MovementLoopAddLocation(NPC, -190.13, 0.47, -48.1, 2, 0)
  32. MovementLoopAddLocation(NPC, -192.35, -0.1, -63.76, 2, 0)
  33. MovementLoopAddLocation(NPC, -188.84, 0.41, -72.02, 2, 0)
  34. MovementLoopAddLocation(NPC, -182.93, -0.11, -73.04, 2, 0)
  35. MovementLoopAddLocation(NPC, -168.98, -0.27, -73.79, 2, 0)
  36. MovementLoopAddLocation(NPC, -147.81, -0.1, -84.18, 2, 0)
  37. MovementLoopAddLocation(NPC, -154.12, -0.05, -96.36, 2, 0)
  38. MovementLoopAddLocation(NPC, -158.12, -0.11, -119.96, 2, 0)
  39. MovementLoopAddLocation(NPC, -159.09, 0, -134.09, 2, 0)
  40. MovementLoopAddLocation(NPC, -147.06, -0.05, -138.74, 2, 0)
  41. MovementLoopAddLocation(NPC, -128.34, -0.12, -136.19, 2, 0)
  42. MovementLoopAddLocation(NPC, -126.8, -0.12, -124.74, 2, 0)
  43. end