Page 1 of 1

automatic aim in mind ? the last of us

PostPosted: Tue Jan 12, 2016 4:25 am
by junior2236
guys have a question, in the last of us there is an automatic script that aim in mind?

Re: automatic aim in mind ? the last of us

PostPosted: Tue Jan 12, 2016 12:21 pm
by J2Kbr
Our specialist in The Last of Us is perfecthuntr. Here you can find some of his comments related with this game:
viewtopic.php?f=5&t=2782&p=20458#p20458
viewtopic.php?f=4&t=2864
viewtopic.php?f=5&t=2761&start=30

Re: automatic aim in mind ? the last of us

PostPosted: Sat Feb 06, 2016 12:08 am
by Relentless Gaming
J2Kbr wrote:Our specialist in The Last of Us is perfecthuntr. Here you can find some of his comments related with this game:
viewtopic.php?f=5&t=2782&p=20458#p20458
viewtopic.php?f=4&t=2864
viewtopic.php?f=5&t=2761&start=30

will there be one for BO3? in the near future

Re: automatic aim in mind ? the last of us

PostPosted: Mon Feb 08, 2016 11:55 am
by J2Kbr
With exception of a game glitch, a real aim-bot is not possible on consoles. What can be done is abuse of the aim-assist mechanics, by repetitively pressing and releasing the ADS/Aim button. This "technique" could be very effective when playing campaign mode on BO3, but its effect is usually reduced in multiplayer.

With the Titan One you can load script to automatically perform the above technique, here is an example:
Code: Select all
main {
    if(get_val(PS4_L2) && get_ptime(PS4_L2) > 200) {
        combo_run(AimAssistAbuse);
    }
}

combo AimAssistAbuse {
    set_val(PS4_L2, 100);
    wait(40);
    set_val(PS4_L2, 0);
    wait(30);
    set_val(PS4_L2, 0);
}