Sensitivity Fine-Tuning

A simple script with which you can fine tune almost all sensitivity aspect. - Overall sensitivity; increase or decrease overall sensitivity; - ADS sensitivity; increase or decrease the amount of sensitivity while zooming (ADS); - about Midpoint: 50 is the default value, and represents the 50% of the range of the stick's run, that goes from 0 to 100 if you set the midpoint value for example to 35, you are telling to the console that 35 now is the 50% of the stick run. In this case, you will have: - an high sensitivity range when moving your stick from 0 to 35, because the run of the stick is shorter - and a low sensitivity range from 35 to 100, because the run of the stick is longer Instead, If you set the midpoint to 80, you are telling the console that 80 is the 50% of the stick run, with: - a low sensitivity range when moving your stick from 0 to 80, because the run of the stick is longer - and a high sensitivity range from 80 to 100, because the run of the stick is shorter.
Version1.2
AuthorValant
Publish DateTue, 12 Jul 2016 - 16:26
Last UpdateTue, 12 Jul 2016 - 16:26
Downloads328
RATE


0

0

Release Notes: Since LEX LOST's account was deleted/banned, I decided to share with you guys the scripts he made that were lost.
Code: Select all
    //--------------------------------------------------------------------------------------------------------//
    //  SENSITIVITY FINE TUNING SCRIPT
    //--------------------------------------------------------------------------------------------------------//
    //  Version: 1.2
    //  Platform: Multi
    //  Controller: Multi - Mouse & Keyboard
    //  Author: LEX LOST
    //  Republisher: Valant
    //--------------------------------------------------------------------------------------------------------//
    //  INSTRUCTIONS BELOW
    //--------------------------------------------------------------------------------------------------------//
    define ADS_BUTTON = 7; // 7 = LT/L2 - change for different layout
                           // write 6 instead of 7 if you aim with LB/L1
 
    define ADS_SENS = 100; // Sensitivity while aiming - Default: 100 - Range [0 ~ 327]
                           // set a number below 100 for less sens - above 100 for more sens
 
    define OVE_SENS = 100; // Overall sensitivity - Default: 100 - Range [0 ~ 327]
                           // set a number below 100 for less sens - above 100 for more sens
 
    define MIDPOINT = 50/** MIDPOINT - Default: 50 - Range [0 ~ 100]
    If you set a number below 50 you are defining a zone of high sensitivity range when close to rest position
    (fast movements) and a low sensitivity range when far from rest position (better accuracy).
    if you set a number above 50 you are defining a zone of low sensitivity when close to the rest position
    (better accuracy), and a zone of high sensitivity when far from rest position (fast movements).**/

 
 
    //--------------------------------------------------------------------------------------------------------//
    main {
        // ADS SENS
        if (get_val(ADS_BUTTON) ) {       
        sensitivity( 9, MIDPOINT, ADS_SENS);       
        sensitivity(10, MIDPOINT, ADS_SENS);
        }else{
        // OVERALL SENS
        sensitivity( 9, MIDPOINT, OVE_SENS);
        sensitivity(10, MIDPOINT, OVE_SENS);
        }
    }//end