Modern Warfare Aim Assist Findings

GPC2 script programming for Titan Two. Code examples, questions, requests.

Re: Modern Warfare Aim Assist Findings

Postby DBurd » Wed Nov 04, 2020 9:25 pm

Can you help with a setting for the aim assist drift?
User avatar
DBurd
Sergeant
Sergeant
 
Posts: 6
Joined: Tue May 12, 2020 6:44 am

Re: Modern Warfare Aim Assist Findings

Postby Beryl » Fri Nov 19, 2021 1:22 am

Interesting
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Modern Warfare Aim Assist Findings

Postby Beryl » Fri Nov 19, 2021 5:42 am

Just tried with PUBG but the anti recoil script im using wont work, also any tips regarding screen shake when auto reloading using the fire button?
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Modern Warfare Aim Assist Findings

Postby Mad » Fri Nov 19, 2021 5:44 am

Beryl wrote:Just tried with PUBG but the anti recoil script im using wont work, also any tips regarding screen shake when auto reloading using the fire button?

PUBG doesn't have aim assist.
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord
Mad
Major General
Major General
 
Posts: 4536
Joined: Wed May 22, 2019 5:39 am

Re: Modern Warfare Aim Assist Findings

Postby Beryl » Fri Nov 19, 2021 1:28 pm

Not after aim assist i wanted the orbital aim bit on fire? Is this different i may of miss understould in my hunt lol
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Re: Modern Warfare Aim Assist Findings

Postby Beryl » Tue May 17, 2022 1:28 pm

bonefisher wrote:
Code: Select all
 
const fix32 fire_aimAssistRadius = 13.0;
const fix32 ads_aimAssistRadius  = 12.0;
fix32 aimAssistAngle;
 
main
{
    if(get_actual(BUTTON_8))
    {
        if(get_actual(BUTTON_5))
        {
            set_val(STICK_1_X, clamp(get_actual(STICK_1_X) + fire_aimAssistRadius * cos(aimAssistAngle),-100.0,100.0));
            set_val(STICK_1_Y, clamp(get_actual(STICK_1_Y) + fire_aimAssistRadius * sin(aimAssistAngle),-100.0,100.0));
        }
        else
        {
            set_val(STICK_1_X, clamp(get_actual(STICK_1_X) + ads_aimAssistRadius * cos(aimAssistAngle),-100.0,100.0));
            set_val(STICK_1_Y, clamp(get_actual(STICK_1_Y) + ads_aimAssistRadius * sin(aimAssistAngle),-100.0,100.0))
        }
 
        if(get_actual(STICK_1_X) > 0.0)aimAssistAngle -= 0.11 * (fix32)elapsed_time();
        if(get_actual(STICK_1_X) < 0.0)aimAssistAngle += 0.11 * (fix32)elapsed_time();
    }
}
 



Question regarding this, my anti recoil script doesnt work with this?
User avatar
Beryl
Sergeant Major of the Army
Sergeant Major of the Army
 
Posts: 198
Joined: Fri Nov 27, 2020 7:47 pm

Previous

Return to GPC2 Script Programming

Who is online

Users browsing this forum: No registered users and 105 guests