Page 38 of 54

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

PostPosted: Mon Feb 08, 2021 8:07 pm
by residualflash
Gold weapons have not been added. Here is the template image. As you can see, we need screenshots of the gold variants of R301, Repeater, Spitfire, Mozambique, and Longbow. Although only R301 and Spitfire really matter as recoil doesn't really affect the other ones. Maybe repeater also. If you come across a gold variant, getting a screen shot would be helpful in updating the template image.

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

PostPosted: Mon Feb 08, 2021 8:26 pm
by Dimakra666
residualflash wrote:Gold weapons have not been added. Here is the template image. As you can see, we need screenshots of the gold variants of R301, Repeater, Spitfire, Mozambique, and Longbow. Although only R301 and Spitfire really matter as recoil doesn't really affect the other ones. Maybe repeater also. If you come across a gold variant, getting a screen shot would be helpful in updating the template image.

Ow sorry mate. May bad haha
Well i never seen thoes golden wepons anywhere hahah

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

PostPosted: Tue Feb 09, 2021 7:04 pm
by DeinCheffe
Hi,
is it possible to switch off the rapid fire with the G7, Wingman and the repeater in the cv script?
The cv script also runs on the Ps5?
Hope someone can help me with the answers. Thank you in advance.

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

PostPosted: Wed Feb 10, 2021 1:28 am
by residualflash
Modify this part towards the bottom of the script

Code: Select all
 
# Report to Titan Two script the rapidfire activation state
elif self.rapidfire != FIREMODE[wfrmode][1]:
    self.rapidfire = FIREMODE[wfrmode][1]
    if (windex == 2 or windex == 3):
        self.rapidfire = 0
    gcvdata = bytearray([0, self.rapidfire])
 


Replace windex == with the index of the weapon you dont want rapidfire. Index is in the order of weapons in the antirecoil section. For example, RE45 is 1, P2020 is 2, R-301 is 3, etc. Add more weapons using "or"

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

PostPosted: Wed Feb 10, 2021 10:43 am
by J2Kbr
residualflash wrote:Modify this part towards the bottom of the script

Code: Select all
 
# Report to Titan Two script the rapidfire activation state
elif self.rapidfire != FIREMODE[wfrmode][1]:
    self.rapidfire = FIREMODE[wfrmode][1]
    if (windex == 2 || windex == 3):
        self.rapidfire = 0
    gcvdata = bytearray([0, self.rapidfire])
 


Replace windex == with the index of the weapon you dont want rapidfire. Index is in the order of weapons in the antirecoil section. For example, RE45 is 1, P2020 is 2, R-301 is 3, etc. Add more weapons using ||

Perfect! Thank you for the input here residualflash. :smile0517:

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

PostPosted: Wed Feb 10, 2021 7:26 pm
by DeinCheffe
This was my try:

# Report to Titan Two script the rapidfire activation state
elif self.rapidfire != FIREMODE[wfrmode][1]:
self.rapidfire = FIREMODE[wfrmode][1]
if (windex == 6 || windex == 7 || windex ==8):
self.rapidfire = 0
gcvdata = bytearray([0, self.rapidfire])
What did i wrong?After that the script wasnt running.The 6 stand for G7,7 for the Repeater and 8 for Wingman.

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

PostPosted: Wed Feb 10, 2021 7:30 pm
by residualflash
There is a syntax error somewhere. Did you indent at the right places. Indenting is important in python scripts.

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

PostPosted: Wed Feb 10, 2021 7:35 pm
by DeinCheffe
This was my try

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

PostPosted: Wed Feb 10, 2021 7:36 pm
by DeinCheffe
If i use the original script, its run.But not my try

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

PostPosted: Wed Feb 10, 2021 8:54 pm
by residualflash
Oops my silly mistake :oops: . Python uses or instead of ||. Just replace the || with or