Page 1 of 1

Help regarding script

PostPosted: Thu Jan 19, 2023 1:40 am
by Beryl
Can anyone explain the lowest and highest figures i can use for this sensitivity script? Just looking to slow my Left Analog down when im down scope as i find i over aim when i move it. Thanks


#define SENSITIVITY 2.0

main {
if (get_val(BUTTON_9)) {
set_val(STICK_1_X, clamp(get_val(STICK_1_X) * SENSITIVITY, -100.0, 100.0));
set_val(STICK_1_Y, clamp(get_val(STICK_1_Y) * SENSITIVITY, -100.0, 100.0));
}
}

Re: Help regarding script

PostPosted: Sun Jan 22, 2023 10:05 am
by Tahsin
Code: Select all
#define SENSITIVITY 2.0     // Adjust this figure from 2.0 to upwards or downwards to increase or decrease sensitivity