Can't use knife after fire 15 times

General support.
Post Reply
User avatar
brainpusher1994
New Member
New Member
Posts: 4
Joined: Fri Jul 16, 2021 3:23 am

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!
User avatar
Lovatto
Admin
Admin
Posts: 1834
Joined: Sun Dec 07, 2014 3:18 pm
Contact:

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--;
How to find your Invoice Number: Here
How to find your Order Number: Here
User avatar
brainpusher1994
New Member
New Member
Posts: 4
Joined: Fri Jul 16, 2021 3:23 am

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
Post Reply