FireCGun: Difference between revisions

From Eternity Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
'''FireCGun''' is a player weapon codepointer. This codepointer implements the DOOM player's chaingun attack, which consists of a single missile-range tracer. Accuracy will be perfect on the first shot, but will use "never" accuracy on subsequent shots.  The tracer does standard player tracer damage determined by this formula:
'''FireCGun''' (void)
 
==Usage==
FireCGun is a player weapon codepointer. This codepointer implements the DOOM player's chaingun attack, which consists of a single missile-range tracer. Accuracy will be perfect on the first shot, but will use "never" accuracy on subsequent shots.  The tracer does standard player tracer damage determined by this formula:


  damage = (random % 3 + 1) * 5
  damage = (random % 3 + 1) * 5

Revision as of 22:07, 21 April 2009

FireCGun (void)

Usage

FireCGun is a player weapon codepointer. This codepointer implements the DOOM player's chaingun attack, which consists of a single missile-range tracer. Accuracy will be perfect on the first shot, but will use "never" accuracy on subsequent shots. The tracer does standard player tracer damage determined by this formula:

damage = (random % 3 + 1) * 5

If no DSCHGUN sound lump is present amongst all WAD files, the "chgun" sound effect will be dynamically remapped to DSPISTOL. This behavior allows the chaingun's default sound to be easily replaced without affecting the pistol, and is new as of SMMU.

For a customizable player bullet attack, see FireCustomBullets.