fluffy.lua 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --[[
  2. Script Name : fluffy.lua
  3. Script Purpose : Waypoint Path for fluffy.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 04:38: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. spawn(NPC)
  16. end
  17. --[[
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 809.06, -23.31, 118.9, 1, math.random(6,20))
  20. MovementLoopAddLocation(NPC, 814.98, -23.31, 81.14, 1, 0)
  21. MovementLoopAddLocation(NPC, 832.46, -23.35, 41.37, 1, 0)
  22. MovementLoopAddLocation(NPC, 857.7, -25.4, 38.3, 1, 0)
  23. MovementLoopAddLocation(NPC, 859.84, -25.51, 34.46, 1, 0)
  24. MovementLoopAddLocation(NPC, 885.67, -25.49, 37.78, 1, 0)
  25. MovementLoopAddLocation(NPC, 917.64, -25.49, 20.58, 1, math.random(6,20))
  26. MovementLoopAddLocation(NPC, 913.24, -25.51, 19, 1, 0)
  27. MovementLoopAddLocation(NPC, 890.98, -25.51, 57.99, 1, 0)
  28. MovementLoopAddLocation(NPC, 864.42, -25.5, 111.85, 1, 0)
  29. MovementLoopAddLocation(NPC, 904.37, -25.37, 16.43, 1, 0)
  30. MovementLoopAddLocation(NPC, 902.4, -25.37, -17.72, 1, math.random(6,20))
  31. MovementLoopAddLocation(NPC, 891.84, -25.46, -22.72, 1, 0)
  32. MovementLoopAddLocation(NPC, 896.53, -25.45, -23.46, 1, 0)
  33. MovementLoopAddLocation(NPC, 888.31, -25.4, -50.94, 1, 0)
  34. MovementLoopAddLocation(NPC, 870.99, -25.36, -61.85, 1, math.random(6,20))
  35. MovementLoopAddLocation(NPC, 849.85, -25.36, -64.25, 1, 0)
  36. MovementLoopAddLocation(NPC, 727.6, -21.38, -54.82, 1, 0)
  37. MovementLoopAddLocation(NPC, 706.41, -21.09, -80.29, 1, 0)
  38. MovementLoopAddLocation(NPC, 727.6, -21.38, -54.82, 1, 0)
  39. MovementLoopAddLocation(NPC, 849.85, -25.36, -64.25, 1, 0)
  40. MovementLoopAddLocation(NPC, 870.99, -25.36, -61.85, 1, math.random(6,20))
  41. MovementLoopAddLocation(NPC, 888.31, -25.4, -50.94, 1, 0)
  42. MovementLoopAddLocation(NPC, 896.53, -25.45, -23.46, 1, 0)
  43. MovementLoopAddLocation(NPC, 891.84, -25.46, -22.72, 1, 0)
  44. MovementLoopAddLocation(NPC, 902.4, -25.37, -17.72, 1, 0)
  45. MovementLoopAddLocation(NPC, 904.37, -25.37, 16.43, 1, math.random(6,20))
  46. MovementLoopAddLocation(NPC, 864.42, -25.5, 111.85, 1, 0)
  47. MovementLoopAddLocation(NPC, 890.98, -25.51, 57.99, 1, 0)
  48. MovementLoopAddLocation(NPC, 913.24, -25.51, 19, 1, 0)
  49. MovementLoopAddLocation(NPC, 917.64, -25.49, 20.58, 1, 0)
  50. MovementLoopAddLocation(NPC, 885.67, -25.49, 37.78, 1, math.random(6,20))
  51. MovementLoopAddLocation(NPC, 859.84, -25.51, 34.46, 1, 0)
  52. MovementLoopAddLocation(NPC, 857.7, -25.4, 38.3, 1, 0)
  53. MovementLoopAddLocation(NPC, 832.46, -23.35, 41.37, 1, 0)
  54. MovementLoopAddLocation(NPC, 814.98, -23.31, 81.14, 1, 0)
  55. MovementLoopAddLocation(NPC, 809.06, -23.31, 118.9, 1, math.random(6,20))
  56. end
  57. ]]--