I'm working with a custom weapon which I'm dealing with how much damage it deals out and how large the Horizontal spread should be.
I wanted to base this weapon around properties in the original Doom weapons, but this information seems unspecified as from what I've read, the only info available is the range variables for damage and Horz. Spread. (i.e. from 5-15 damage, and 1 - 5.5 degrees Horz. spread). I was hoping some one can tell me the solid base numbers for which the variables are based, but mainly the "Clip" based weapons like the pistol and chaingun.
Damage and spread properties of original Doom weapons
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
- BlueFireZ88
- Posts: 1087
- Joined: Tue Jan 18, 2011 9:04 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 10
- Graphics Processor: nVidia (Modern GZDoom)
- Location: Tallon IV
- Contact:
Re: Damage and spread properties of original Doom weapons
http://zdoom.org/wiki/Classes:Doom#Weapons
Select the weapon you want to memic, then click its A_Fire action and it show you the custom decorate behind the projectile.
Select the weapon you want to memic, then click its A_Fire action and it show you the custom decorate behind the projectile.
- BlueFireZ88
- Posts: 1087
- Joined: Tue Jan 18, 2011 9:04 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 10
- Graphics Processor: nVidia (Modern GZDoom)
- Location: Tallon IV
- Contact:
Re: Damage and spread properties of original Doom weapons
Kinda related to this, in the equivalent decorate to the built in actions, it shows a A_Playsound() with 0 tics. I thought have 0 ticks didn't work for A_Playsound?
- wildweasel
- Posts: 21706
- Joined: Tue Jul 15, 2003 7:33 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): A lot of them
- Graphics Processor: Not Listed
- Contact:
Re: Damage and spread properties of original Doom weapons
That's actually a common Decorate trick - it works fine as long as you're not running multiple A_Playsounds on the same tic and the same channel. I messed with this in ww-style to make "new" sounds by combining default sounds together.Eriance wrote:Kinda related to this, in the equivalent decorate to the built in actions, it shows a A_Playsound() with 0 tics. I thought have 0 ticks didn't work for A_Playsound?