bloodsaber_assassin.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : bloodsaber_assasin.lua
  3. Script Purpose : Waypoint Path for bloodsaber_assasin.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 03:19:30 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. fuckit = math.random(0,20)
  18. fuckit = math.random(0,20)
  19. fuckit = math.random(0,20)
  20. fuckit = math.random(0,20)
  21. MovementLoopAddLocation(NPC, 49.77, -4.16, -140.11, 2, fuckit)
  22. MovementLoopAddLocation(NPC, 47.58, -0.15, -153.04, 2, 0)
  23. MovementLoopAddLocation(NPC, 52.44, -0.15, -155.83, 2, 0)
  24. MovementLoopAddLocation(NPC, 55.29, -0.16, -160.31, 2, 0)
  25. MovementLoopAddLocation(NPC, 70.02, -4.16, -160.06, 2, 0)
  26. MovementLoopAddLocation(NPC, 55.57, -0.16, -161.93, 2, 0)
  27. MovementLoopAddLocation(NPC, 52.45, -0.15, -166.39, 2, 0)
  28. MovementLoopAddLocation(NPC, 48.15, -0.15, -168.49, 2, 0)
  29. MovementLoopAddLocation(NPC, 47.87, -4.16, -183.14, 2, 0)
  30. MovementLoopAddLocation(NPC, 47.07, -0.15, -168.82, 2, 0)
  31. MovementLoopAddLocation(NPC, 42.33, -0.16, -165.73, 2, 0)
  32. MovementLoopAddLocation(NPC, 40.31, -0.16, -162.02, 2, 0)
  33. MovementLoopAddLocation(NPC, 15.28, -0.09, -161.49, 2, 0)
  34. MovementLoopAddLocation(NPC, 25.34, -0.04, -161.31, 2, 0)
  35. MovementLoopAddLocation(NPC, 40.41, -0.16, -159.26, 2, 0)
  36. MovementLoopAddLocation(NPC, 43.04, -0.15, -155.41, 2, 0)
  37. MovementLoopAddLocation(NPC, 46.88, -0.15, -153.84, 2, 0)
  38. MovementLoopAddLocation(NPC, 46.07, -4.16, -139.77, 2, 0)
  39. MovementLoopAddLocation(NPC, 46.88, -0.15, -153.84, 2, 0)
  40. MovementLoopAddLocation(NPC, 43.04, -0.15, -155.41, 2, 0)
  41. MovementLoopAddLocation(NPC, 40.41, -0.16, -159.26, 2, 0)
  42. MovementLoopAddLocation(NPC, 25.34, -0.04, -161.31, 2, 0)
  43. MovementLoopAddLocation(NPC, 15.28, -0.09, -161.49, 2, 0)
  44. MovementLoopAddLocation(NPC, 40.31, -0.16, -162.02, 2, 0)
  45. MovementLoopAddLocation(NPC, 42.33, -0.16, -165.73, 2, 0)
  46. MovementLoopAddLocation(NPC, 47.07, -0.15, -168.82, 2, 0)
  47. MovementLoopAddLocation(NPC, 47.87, -4.16, -183.14, 2, 0)
  48. MovementLoopAddLocation(NPC, 48.15, -0.15, -168.49, 2, 0)
  49. MovementLoopAddLocation(NPC, 52.45, -0.15, -166.39, 2, 0)
  50. MovementLoopAddLocation(NPC, 55.57, -0.16, -161.93, 2, 0)
  51. MovementLoopAddLocation(NPC, 70.02, -4.16, -160.06, 2, 0)
  52. MovementLoopAddLocation(NPC, 55.29, -0.16, -160.31, 2, 0)
  53. MovementLoopAddLocation(NPC, 52.44, -0.15, -155.83, 2, 0)
  54. MovementLoopAddLocation(NPC, 47.58, -0.15, -153.04, 2, 0)
  55. MovementLoopAddLocation(NPC, 49.77, -4.16, -140.11, 2, math.random(0,20))
  56. end