NBA 2K Auto Free Throw Shooter

Simple script to shot a free throw. Simply press "back" on the Xbox 360 Controller or "select" on the PS3 Controller to shot the free throw. Adjust the delay according to your player's free throw routine.
Versionv1.0
Authorvkruoso
Publish DateSun, 21 Oct 2012 - 00:27
Last UpdateSun, 21 Oct 2012 - 00:27
Downloads468
RATE


2

0

Code: Select all
main {
    if(event_press(XB360_BACK))
        combo_run(FTShot);
    set_val(XB360_BACK,0);
}
 
combo FTShot {
    set_val(XB360_RY,010); wait(40);
    set_val(XB360_RY,050); wait(40);
    set_val(XB360_RY,070); wait(40);
    set_val(XB360_RY,100); wait(980);
    set_val(XB360_RY,000); wait(40);
}