Page 1 of 1

Cod quickscope Xboxone

PostPosted: Fri Apr 08, 2022 5:51 am
by JohnWick38
Need a script that allows me to quickscope upon releasing the LT button instead of the normal tap or pressure sensitive quickscope inside the cod gamepacks.

Re: Cod quickscope Xboxone

PostPosted: Fri Apr 08, 2022 11:18 pm
by Mad
Code: Select all
define QUICKSCOPE_TIME = 320; // time it takes to scope in, in milliseconds
 
main {
    if(event_release(XB1_LT)) combo_run(qs);
}
 
combo qs {
    set_val(XB1_LT, 100);
    wait(QUICKSCOPE_TIME);
    set_val(XB1_LT, 100);
    set_val(XB1_RT, 100);
    wait(40);
}