Page 1 of 1

Can't use knife after fire 15 times

Posted: Thu Sep 09, 2021 12:58 pm
by brainpusher1994
Hello! Could you help me solving problem with knife? It stops firing after 15 clicks, it just stucks. I saw from your updates that you have fixed that problem, but we don't have possibility for updating MFPS right now. Could you please point to the place where I can fix this beacause i couldn't find it by myself. Really appreciate yout help!

Re: Can't use knife after fire 15 times

Posted: Thu Sep 09, 2021 2:12 pm
by Lovatto
Hi,

To fix it, simply replace this line:

Code: Select all

bulletsLeft--;
in bl_Gun.cs -> OnFireCommons()
with this lines:

Code: Select all

if (Info.Type != GunType.Knife) bulletsLeft--;

Re: Can't use knife after fire 15 times

Posted: Fri Sep 10, 2021 5:26 am
by brainpusher1994
Lovatto wrote: Thu Sep 09, 2021 2:12 pm Hi,

To fix it, simply replace this line:

Code: Select all

bulletsLeft--;
in bl_Gun.cs -> OnFireCommons()
with this lines:

Code: Select all

if (Info.Type != GunType.Knife) bulletsLeft--;
God bless you! Thank you for your fast reply, really appreciate it