Auto aim

So I created my first script so plz tell me if any thing needs updated or fixed. This works for all consoles and intended for FPS games. So what this does is spams LT/L2 and how i found out about this is when u aim to a enemy that is within shooting range it locks on to them but only when u AIM and then the recoil bounces the gun around so it doesnt lock on.... I havent tested this yet so plz tell me if anything needs changed :)
Version3.50
AuthorRelentless Gaming
Publish DateSun, 6 Nov 2016 - 15:59
Last UpdateSun, 6 Nov 2016 - 15:59
Downloads2219
RATE


8

7

Release Notes: FPS games and all consoles
Code: Select all
 
main {
    if(get_val(XB1_LT) && get_ptime(XB1_LT) > 350) {
        combo_run(AimAssistAbuse);
    }
}
 
combo AimAssistAbuse {
    set_val(XB1_LT, 100);
    wait(40);
    set_val(XB1_LT, 0);
    wait(20); // <<< Tweak this value.
    set_val(XB1_LT, 0);
}