Advertisement
Guest User

CronusMax

a guest
Jan 6th, 2019
10,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.21 KB | None | 0 0
  1. /////////////////////////////////////////////////////////////////////////////|
  2. // ____ __ |
  3. // /\ _`\ __ /\ \ |
  4. // \ \ \L\ \ __ /\_\ ___ \ \ \____ ___ __ __ __ |
  5. // \ \ , / /'__`\ \/\ \ /' _ `\ \ \ '__`\ / __`\ /\ \/\ \/\ \ |
  6. // \ \ \\ \ /\ \L\.\_ \ \ \ /\ \/\ \ \ \ \L\ \/\ \L\ \\ \ \_/ \_/ \ |
  7. // \ \_\ \_\\ \__/.\_\ \ \_\\ \_\ \_\ \ \_,__/\ \____/ \ \___x___/' |
  8. // \/_/\/ / \/__/\/_/ \/_/ \/_/\/_/ \/___/ \/___/ \/__//__/ |
  9. // ____ |
  10. // /\ _`\ __ |
  11. // \ \,\L\_\ /\_\ __ _ |
  12. // \/_\__ \ \/\ \ /\ \/'\ |
  13. // /\ \L\ \ \ \ \ \/> </ |
  14. // \ `\____\ \ \_\ /\_/\_\ |
  15. // \/_____/ \/_/ \//\/_/ |
  16. // ____ |
  17. // /\ _`\ __ |
  18. // \ \,\L\_\ /\_\ __ __ __ |
  19. // \/_\__ \ \/\ \ /'__`\ /'_ `\ /'__`\ |
  20. // /\ \L\ \ \ \ \ /\ __/ /\ \L\ \ /\ __/ |
  21. // \ `\____\ \ \_\\ \____\\ \____ \ \ \____\ |
  22. // \/_____/ \/_/ \/____/ \/___L\ \ \/____/ |
  23. // /\____/ |
  24. // \_/__/ |
  25. // |
  26. /////////////////////////////////////////////////////////////////////////////|
  27. // _____ _ _ ______ _
  28. // | __ \ (_) | | | ____(_)
  29. // | |__) |__ _ _ __ _ __| | | |__ _ _ __ ___
  30. // | _ // _` | '_ \| |/ _` | | __| | | '__/ _ \
  31. // | | \ \ (_| | |_) | | (_| | | | | | | | __/
  32. // |_| \_\__,_| .__/|_|\__,_| |_| |_|_| \___|
  33. // | | _
  34. // /\_| | |
  35. // / \ _ __ __| |
  36. // / /\ \ | '_ \ / _` |
  37. // / ____ \| | | | (_| |
  38. // /_/ \_\_| |_|\__,_|
  39. // _ _ _____ _ _
  40. // /\ | | (_) __ \ (_) |
  41. // / \ _ __ | |_ _| |__) |___ ___ ___ _| |
  42. // / /\ \ | '_ \| __| | _ // _ \/ __/ _ \| | |
  43. // / ____ \| | | | |_| | | \ \ __/ (_| (_) | | |
  44. // /_/ \_\_| |_|\__|_|_| _\_\___|\___\___/|_|_|
  45. // / __ \ | |
  46. // | | | |_ __ | |_ _
  47. // | | | | '_ \| | | | |
  48. // | |__| | | | | | |_| |
  49. // \____/|_| |_|_|\__, |
  50. // __/ |
  51. // |___/
  52. //----------------------------------------------------------------------------
  53. int RapidFire = TRUE; //16.95sps
  54. int ADS = TRUE;
  55. int AimChange = TRUE;
  56.  
  57. int ANTI_RECOIL = 1; //change "0" to compensate vertical recoil (0 - 100)
  58. int DEFAULT_RECOIL = 0; // Change this to what you want the Recoil to RESET to when you press the recoil-reset button
  59. int anti_recoil;
  60. int anti_recoil_left;
  61. int anti_recoil_right;
  62. define ANTI_RECOIL_LEFT = 0;
  63. define ANTI_RECOIL_RIGHT = 0;
  64. define qswait = 400;
  65. define AimSens = 120;
  66.  
  67.  
  68.  
  69. main {
  70. set_val(TRACE_1, ANTI_RECOIL);
  71.  
  72. // Start of Menu system
  73. if (get_val(PS4_L2) && get_val(PS4_UP)){
  74. set_val(0,0);
  75. if(event_press(PS4_R2)){RapidFire = !RapidFire;}
  76. if(event_press(PS4_R3)){AimChange = !AimChange;}
  77.  
  78.  
  79. }// End of Menu System
  80.  
  81.  
  82.  
  83. if(RapidFire){
  84. if(get_val(4)) combo_run(rapidfire);}
  85.  
  86.  
  87.  
  88. if(AimChange){
  89. if (get_val(7)){
  90. sensitivity(10, NOT_USE, (AimSens));
  91. sensitivity(9, NOT_USE, (AimSens));}}
  92.  
  93.  
  94.  
  95. if((get_val(4))) {combo_run(antirecoil);}
  96.  
  97. if ((get_val(10)> 20) && (get_val(10)< -20)) {combo_stop(antirecoil);}
  98. if ((get_val(9)> 20) && (get_val(9)< -20)) {combo_stop(antirecoil);}
  99.  
  100. }// End of Main Block
  101.  
  102.  
  103.  
  104. //RAPID FIRE
  105. combo rapidfire {
  106. set_val(PS4_R2,100);
  107. wait(30);
  108. set_val(PS4_R2,0);
  109. wait(19);
  110. wait(10);}
  111.  
  112. // RECOIL
  113. combo antirecoil { // This combo must be the last one
  114. if(get_val(4)) {
  115. anti_recoil = get_val(10) + (ANTI_RECOIL * -1);
  116. if(anti_recoil > 100) anti_recoil = 100;
  117. set_val(10, anti_recoil);
  118. anti_recoil_left = get_val(9) -ANTI_RECOIL_LEFT;
  119. if(anti_recoil_left > 100) anti_recoil_left = 100;
  120. set_val(9, anti_recoil_left);
  121. anti_recoil_right = get_val(9) +ANTI_RECOIL_RIGHT;
  122. if(anti_recoil_right > 100) anti_recoil_right = 100;
  123. set_val(9, anti_recoil_right);
  124. }
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement