SoundOfDarkness wrote:I fiddled in some mods the last days and learned to adjust weapon damage thanks to kodi, KuroTsuki and the ZDoom Wiki.
Now I'm trying to adjust the fire rate. I checked the Wiki but couldn't find what I'm looking for. Any help?
For that you'll want to adjust how long the animation takes. So for example the fire state of the pistol is
Code: Select all
PISG A 4
PISG B 6 A_FirePistol
PISG C 4
PISG B 5 A_ReFire
Goto Ready
To make it shoot faster, you could change it to
Code: Select all
PISG A 2
PISG B 4 A_FirePistol
PISG C 2
PISG B 3 A_ReFire
Goto Ready
This would shorten the fire time from 19 frames to 11, or about .2 seconds faster. Keep in mind that if what you're tweaking has a flash state, you'll want to adjust that as well.