shriller3.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : shriller3.lua
  3. Script Purpose : Waypoint Path for shriller3.lua
  4. Script Author : Devn00b
  5. Script Date : 05/09/2020 10:07:15 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.82, -0.08, -28.73, 2, math.random(0,2))
  19. MovementLoopAddLocation(NPC, -14.19, -0.05, -31.9, 2, math.random(0,2))
  20. MovementLoopAddLocation(NPC, -12.75, -0.08, -30.73, 2, math.random(0,2))
  21. MovementLoopAddLocation(NPC, -17.68, -0.1, -29.51, 2, math.random(0,2))
  22. MovementLoopAddLocation(NPC, -15.77, -0.11, -29.23, 2, math.random(0,2))
  23. MovementLoopAddLocation(NPC, -14.32, -0.05, -26.24, 2, math.random(0,2))
  24. MovementLoopAddLocation(NPC, -10.65, -0.08, -28.41, 2, math.random(0,2))
  25. MovementLoopAddLocation(NPC, -16.25, -0.05, -30.97, 2, math.random(0,2))
  26. MovementLoopAddLocation(NPC, -14.82, -0.09, -29.67, 2, math.random(0,2))
  27. MovementLoopAddLocation(NPC, -12.37, 0.37, -27.11, 2, math.random(0,2))
  28. MovementLoopAddLocation(NPC, -15.51, -0.05, -27.97, 2, math.random(0,2))
  29. MovementLoopAddLocation(NPC, -12.98, -0.07, -30.73, 2, math.random(0,2))
  30. MovementLoopAddLocation(NPC, -15.51, -0.05, -27.97, 2, math.random(0,2))
  31. MovementLoopAddLocation(NPC, -12.37, 0.37, -27.11, 2, math.random(0,2))
  32. MovementLoopAddLocation(NPC, -14.82, -0.09, -29.67, 2, math.random(0,2))
  33. MovementLoopAddLocation(NPC, -16.25, -0.05, -30.97, 2, math.random(0,2))
  34. MovementLoopAddLocation(NPC, -10.65, -0.08, -28.41, 2, math.random(0,2))
  35. MovementLoopAddLocation(NPC, -14.32, -0.05, -26.24, 2, math.random(0,2))
  36. MovementLoopAddLocation(NPC, -15.77, -0.11, -29.23, 2, math.random(0,2))
  37. MovementLoopAddLocation(NPC, -17.68, -0.1, -29.51, 2, math.random(0,2))
  38. MovementLoopAddLocation(NPC, -12.75, -0.08, -30.73, 2, math.random(0,2))
  39. MovementLoopAddLocation(NPC, -14.19, -0.05, -31.9, 2, math.random(0,2))
  40. MovementLoopAddLocation(NPC, -10.82, -0.08, -28.73, 2, math.random(0,2))
  41. end