[GCV/GPC] Apex Legends CV Anti-Recoil

GCV scripting for Gtuner IV and Titan Two. Configuration, examples, questions.

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby GGsUK » Tue Aug 03, 2021 5:12 pm

So, will there be an update with the new season? last season wasnt a big deal because not much changed, but this time around isnt the case
User avatar
GGsUK
First Sergeant
First Sergeant
 
Posts: 52
Joined: Wed Nov 20, 2019 5:50 pm

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby zyphen » Tue Aug 03, 2021 8:30 pm

Some things I've noticed in the firing range.

Spitfire and Alternator are no longer recognized since being added to the care package.

Every time I tried to use the new "boosted loader" hop up on the hemlock it would crash python but using the new hop up on the wingman was fine.

Then naturally the LMG Rampage doesn't have a profile and the L-Star could use some tweaking with it now having a barrel attachment but is still usable.
User avatar
zyphen
Sergeant
Sergeant
 
Posts: 7
Joined: Fri Dec 19, 2014 4:31 pm

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby boxerpram » Wed Aug 04, 2021 3:04 am

zyphen wrote:Some things I've noticed in the firing range.

Spitfire and Alternator are no longer recognized since being added to the care package.

Every time I tried to use the new "boosted loader" hop up on the hemlock it would crash python but using the new hop up on the wingman was fine.

Then naturally the LMG Rampage doesn't have a profile and the L-Star could use some tweaking with it now having a barrel attachment but is still usable.

I second this and we need anti recoil for a new gun please
User avatar
boxerpram
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Sun Nov 08, 2020 8:28 am

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby residualflash » Wed Aug 04, 2021 5:06 pm

Updating the code to match new care package weapons will be easy but only J2Kbr has the code for calculating new recoil values and as far as I'm aware, he hasn't shared that code/method. He hasn't been active on the forum since April 1 so my hopes for an updated script is pretty low.
User avatar
residualflash
Master Sergeant
Master Sergeant
 
Posts: 39
Joined: Fri Apr 05, 2019 8:37 pm

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby Krakkon » Fri Aug 06, 2021 4:57 pm

Is CV dead now? No longer updated?
User avatar
Krakkon
Sergeant First Class
Sergeant First Class
 
Posts: 24
Joined: Wed Mar 20, 2019 5:27 am

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby Mad » Fri Aug 06, 2021 10:07 pm

Krakkon wrote:Is CV dead now? No longer updated?

The new season just came out, be patient.
ConsoleTuner Support Team || ConsoleTuner Discord || InputSense Discord (2K / FPS)
Mad
Major General
Major General
 
Posts: 4533
Joined: Wed May 22, 2019 5:39 am

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby residualflash » Sun Aug 08, 2021 10:53 pm

I updated the script so that weapons can be detected. Recoil values are not updated.

Add "Rampage" above the 3030 repeater.

Code: Select all
 
    # HEAVY WEAPONS ------------------------------------------------------------
    [ "RAMPAGE", # 7
    [ # Controller Stick
        [],
        [],
        [],
    ],
    [ # Mouse Raw Offset
        [],
        [],
        [],
    ],
    ],
 


You'll have to update the weapon index for all weapons after Rampage. For example, 3030 will become #8, wingman #9, and so on.

Change supply drop weapons to the following:

Code: Select all
 
    [ "TRIPE TAKE",
        25, [ 0, 0, 4, ],
    ],
    [ "SPITFIRE",
        10, [ 0, 4, 1, ],
    ],
    [ "ALTERNATOR",
        5, [ 0, 4, 0, ],
    ],
 


Also change this line (line # 615 in original script). You're changing 26 to 27 since there are 27 weapons now.

Code: Select all
 
# If common weapon
if windex <= 27:
 


Replace the template image with the attached updated one.

This will update the script for s10, but recoil values have not been updated. This will have to be down by J2Kbr
Attachments
apex_antirecoil.png
apex_antirecoil.png (165.2 KiB) Viewed 3444 times
User avatar
residualflash
Master Sergeant
Master Sergeant
 
Posts: 39
Joined: Fri Apr 05, 2019 8:37 pm

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby boxerpram » Mon Aug 09, 2021 7:03 am

residualflash wrote:I updated the script so that weapons can be detected. Recoil values are not updated.

Add "Rampage" above the 3030 repeater.

Code: Select all
 
    # HEAVY WEAPONS ------------------------------------------------------------
    [ "RAMPAGE", # 7
    [ # Controller Stick
        [],
        [],
        [],
    ],
    [ # Mouse Raw Offset
        [],
        [],
        [],
    ],
    ],
 


You'll have to update the weapon index for all weapons after Rampage. For example, 3030 will become #8, wingman #9, and so on.

Change supply drop weapons to the following:

Code: Select all
 
    [ "TRIPE TAKE",
        25, [ 0, 0, 4, ],
    ],
    [ "SPITFIRE",
        10, [ 0, 4, 1, ],
    ],
    [ "ALTERNATOR",
        5, [ 0, 4, 0, ],
    ],
 


Also change this line (line # 615 in original script). You're changing 26 to 27 since there are 27 weapons now.

Code: Select all
 
# If common weapon
if windex <= 27:
 


Replace the template image with the attached updated one.

This will update the script for s10, but recoil values have not been updated. This will have to be down by J2Kbr


well done my friend I am trying to work out the recoil pattern of the Rampage at the moment hopefully I can contribute a little bit
User avatar
boxerpram
Sergeant First Class
Sergeant First Class
 
Posts: 25
Joined: Sun Nov 08, 2020 8:28 am

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby zyphen » Tue Aug 10, 2021 2:41 am

Thanks for the instructions residualflash, worked great.
User avatar
zyphen
Sergeant
Sergeant
 
Posts: 7
Joined: Fri Dec 19, 2014 4:31 pm

Re: [GCV/GPC] Apex Legends CV Anti-Recoil

Postby jas0n » Thu Aug 12, 2021 5:53 am

residualflash wrote:I updated the script so that weapons can be detected. Recoil values are not updated.


This will update the script for s10, but recoil values have not been updated. This will have to be down by J2Kbr


This works great thanks for doing this it detected all the weapons just fine.

Seems like recoil hasn't changed much that I could tell, so the rampage is the only thing missing.

Good Job
:smile0203:
jas0n
Sergeant
Sergeant
 
Posts: 9
Joined: Thu Apr 08, 2021 1:57 am

PreviousNext

Return to Gtuner Computer Vision

Who is online

Users browsing this forum: No registered users and 78 guests