shriller5.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : shriller5_1.lua
  3. Script Purpose : Waypoint Path for shriller5_1.lua
  4. Script Author : Devn00b
  5. Script Date : 05/18/2020 10:05:50 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, 120.75, 6.9, -81.61, 2, 0)
  19. MovementLoopAddLocation(NPC, 123.21, 6.89, -80.25, 2, 0)
  20. MovementLoopAddLocation(NPC, 117.81, 6.89, -71.75, 2, 0)
  21. MovementLoopAddLocation(NPC, 123.34, 6.85, -62.46, 2, 0)
  22. MovementLoopAddLocation(NPC, 105.21, 7.22, -46.6, 2, 0)
  23. MovementLoopAddLocation(NPC, 99.28, 6.85, -44.87, 2, 0)
  24. MovementLoopAddLocation(NPC, 96.35, 7.36, -50.7, 2, 0)
  25. MovementLoopAddLocation(NPC, 94.42, 7.28, -61.57, 2, 0)
  26. MovementLoopAddLocation(NPC, 93.06, 6.91, -63.49, 2, 0)
  27. MovementLoopAddLocation(NPC, 79.72, 6.85, -63.76, 2, 0)
  28. MovementLoopAddLocation(NPC, 70.68, 6.88, -58.05, 2, 0)
  29. MovementLoopAddLocation(NPC, 60.92, 6.98, -57.8, 2, 0)
  30. MovementLoopAddLocation(NPC, 70.68, 6.88, -58.05, 2, 0)
  31. MovementLoopAddLocation(NPC, 79.72, 6.85, -63.76, 2, 0)
  32. MovementLoopAddLocation(NPC, 93.06, 6.91, -63.49, 2, 0)
  33. MovementLoopAddLocation(NPC, 94.42, 7.28, -61.57, 2, 0)
  34. MovementLoopAddLocation(NPC, 96.35, 7.36, -50.7, 2, 0)
  35. MovementLoopAddLocation(NPC, 99.28, 6.85, -44.87, 2, 0)
  36. MovementLoopAddLocation(NPC, 105.21, 7.22, -46.6, 2, 0)
  37. MovementLoopAddLocation(NPC, 123.34, 6.85, -62.46, 2, 0)
  38. MovementLoopAddLocation(NPC, 117.81, 6.89, -71.75, 2, 0)
  39. MovementLoopAddLocation(NPC, 123.21, 6.89, -80.25, 2, 0)
  40. MovementLoopAddLocation(NPC, 120.75, 6.9, -81.61, 2, 0)
  41. end