[4.2.0] +RIPPER not working

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.

Post a reply

Smilies
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :geek: :ugeek: :!: :?: :idea: :arrow: :| :mrgreen: :3: :wub: >:( :blergh:
View more smilies

BBCode is OFF
Smilies are ON

Topic review
   

Expand view Topic review: [4.2.0] +RIPPER not working

Re: [4.2.0] +RIPPER not working

by Graf Zahl » Fri Oct 04, 2019 11:04 pm

The order matters because "BounceType" sets the BounceFlags to a preset, just like the 'monster' and 'projectile' properties do with other flags.
So, if you give it later, it will override the older operations.

Re: [4.2.0] +RIPPER not working

by Ichor » Fri Oct 04, 2019 4:23 pm

Sunbeam wrote:I just encountered the same problem in the newest version of GZDoom (4.2.1). I added

Code: Select all

-ALLOWBOUNCEONACTORS
-BOUNCEONACTORS
to my projectile actor definition which solved the issue. However as a note to anyone having the same problem: Make sure to add these flags AFTER defining any bounce type like this:

Code: Select all

BounceType Hexen
For me setting the flags before the bounce type did not work.
You'd think that it wouldn't matter what the order was, but apparently it does. This fixes all of my problems, even the +BOSSRIP issue that I posted about the other day.

Re: [4.2.0] +RIPPER not working

by Sunbeam » Wed Oct 02, 2019 6:20 am

I just encountered the same problem in the newest version of GZDoom (4.2.1). I added

Code: Select all

-ALLOWBOUNCEONACTORS
-BOUNCEONACTORS
to my projectile actor definition which solved the issue. However as a note to anyone having the same problem: Make sure to add these flags AFTER defining any bounce type like this:

Code: Select all

BounceType Hexen
For me setting the flags before the bounce type did not work.

Re: [4.2.0] +RIPPER not working

by Guest » Wed Aug 14, 2019 7:50 am

I only need them to bounce off of walls and floors/ceilings, so that's definitely an acceptable solution. Thank you.

Re: [4.2.0] +RIPPER not working

by Graf Zahl » Wed Aug 14, 2019 7:29 am

Bouncing will override ripping, if bouncing on actors is enabled. The recent change only added handling for one overlooked case when hitting an actor from above or below.
The solution would be to set the projectile to not bounce off actors.

Unfortunately this is all a very complex system where cause and effect are not fully in sync, so weird effects may happen.

Re: [4.2.0] +RIPPER not working

by Enjay » Wed Aug 14, 2019 6:54 am

It seems to be a conflict with the fact that your projectile also bounces. If I remove the bouncing property, the projectile rips as expected:

Image

I wonder if the bouncing fixes for 4.2.0 have affected this? I suspect so because in a pre-fix git build, the projectiles rip.

[4.2.0] +RIPPER not working

by Guest » Wed Aug 14, 2019 6:36 am

The projectile enters its death state instead of ripping through a monster upon impact. Using example below, start a new game, equip a plasma rifle, and shoot at a monster. The projectile should rip through, but instead it just disappears (latter of which is due to a lack of death state, but you get the idea).

https://drive.google.com/open?id=1UiQdU ... liaDFVTIym

Top