Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • 0
HellVain

How do I enable a non-exploding weapon to always gib?

Question

For example, If I wanted the pistol or the chainsaw to always gib my enemies, what would I need to do?

 

My preferred doom editor is slade.

Share this post


Link to post

4 answers to this question

Recommended Posts

  • 2

In ZDoom, the simplest way would be to replace the weapon with a clone using a custom projectile or puff with the EXTREMEDEATH flag. Alternatively, using the damage type "Extreme" works, too.

Share this post


Link to post
  • 0
12 hours ago, Gez said:

In ZDoom, the simplest way would be to replace the weapon with a clone using a custom projectile or puff with the EXTREMEDEATH flag. Alternatively, using the damage type "Extreme" works, too.

How do I do that?

 

sorry, im kinda new to this kind of stuff.

Share this post


Link to post
  • 0

Something like this:
 

Spoiler

ACTOR Testweapon : Weapon
{
    Weapon.AmmoUse1 1
    Weapon.AmmoGive1 10

    Weapon.Damagetype Extreme

    // etc.

 

 

//OR

 

ACTOR Testweapon : Weapon
{
    Weapon.AmmoUse1 1
    Weapon.AmmoGive1 10

    +EXTREMEDEATH

    // etc.

 

 

Share this post


Link to post
  • 0
6 hours ago, Grey_Wolf said:

Something like this:
 

  Hide contents

ACTOR Testweapon : Weapon
{
    Weapon.AmmoUse1 1
    Weapon.AmmoGive1 10

    Weapon.Damagetype Extreme

    // etc.

 

 

//OR

 

ACTOR Testweapon : Weapon
{
    Weapon.AmmoUse1 1
    Weapon.AmmoGive1 10

    +EXTREMEDEATH

    // etc.

 

 

The Weapon. is not needed there.  It is not wrong, but it is not needed.  You can have just AmmoUse1, AmmoGive 10, etc.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×