Rapid Fire (Again)

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

UT_Killer

Scripter
Jun 14, 2001
20
0
0
36
Israel
Visit site
How do I Rapid the Enforcer fire? I heard I need to Change something, what I need to change to rapid the fire? (Please write me the anser in Script Words)
 

Brood_of_Evil

Selene's martyr
Nov 3, 2001
147
0
0
45
Look outside your window!
Visit site
Well I've never worked with the enforcer before but you might change these things:

Change the AnimRate parameter in the PlayAnim function on PlayFiring(),

Code:
simulated function PlayFiring()
{
	PlayOwnedSound(FireSound, SLOT_None,2.0*Pawn(Owner).SoundDampening);
	bMuzzleFlash++;
	PlayAnim('Shoot',0.5 + 0.31 * FireAdjust, 0.02);[color=red]//Increase 0.5 + 0.31 so the animation plays faster[/color]
}