[96] ZDoomcmp1.wad problem

Bugs that have been investigated and resolved somehow.

Moderator: GZDoom Developers

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 Reply
User avatar
Firefox
Posts: 9
Joined: Fri Feb 04, 2005 7:34 pm
Location: Mc Roberts, KY
Contact:

[96] ZDoomcmp1.wad problem

Post by Firefox »

I was playing the ZDoom Community Project Wad with .96 and when I got the freeze weapon, it wouldn't freeze none of the enemys. Also the other powerful rocket launcher is missing as well, it all works in 63A.
User avatar
Anakin S.
Posts: 1067
Joined: Fri Nov 28, 2003 9:39 pm
Location: A long time ago in a galaxy far, far away...

Post by Anakin S. »

It's probably the DEHSUPP lump. If this is the case, you just need to define BlasterPuff1 and BlasterPuff2 in the wad's DECORATE lump.

Code: Select all

ACTOR BlasterPuff1
{ 
   +NOBLOCKMAP +NOGRAVITY +NOTELEPORT +CANNOTPUSH
   RenderStyle Translucent 
   Alpha 0.75 
   States 
   { 
   Spawn: 
      FX17 AB 3 BRIGHT 
      FX17 CDE 4 BRIGHT 
      Stop 
   } 
} 

ACTOR BlasterPuff2 
{ 
   +NOBLOCKMAP +NOGRAVITY +NOTELEPORT +CANNOTPUSH
   RenderStyle Translucent 
   Alpha 0.75 
   States 
   { 
   Spawn: 
      FX17 FG 3 BRIGHT 
      FX17 HIJKL 4 BRIGHT 
      Stop 
   } 
}
Randy removed these classes and replaced them with BlasterPuff. Dehsupp expects them but can't find them, so the dehacked patch won't load without them. Since DECORATE is used to define new classes, put these definitions into that lump and it should work.
User avatar
Firefox
Posts: 9
Joined: Fri Feb 04, 2005 7:34 pm
Location: Mc Roberts, KY
Contact:

Post by Firefox »

All the weapons are back and working again. You have been really kind, thank you very much. :thumb:
User avatar
Graf Zahl
Lead GZDoom+Raze Developer
Lead GZDoom+Raze Developer
Posts: 49230
Joined: Sat Jul 19, 2003 10:19 am
Location: Germany

Post by Graf Zahl »

One more thing: As soon as there is a ZDoom version with weapon support in DECORATE this WAD will be updated to use that instead of the current DEHSUPP modification.
User avatar
Firefox
Posts: 9
Joined: Fri Feb 04, 2005 7:34 pm
Location: Mc Roberts, KY
Contact:

Post by Firefox »

Thanks for the info.
User avatar
Bio Hazard
Posts: 4019
Joined: Fri Aug 15, 2003 8:15 pm
Location: ferret ~/C/ZDL $
Contact:

Re: [96] ZDoomcmp1.wad problem

Post by Bio Hazard »

Firefox wrote:it wouldn't freeze none of the enemys
well then its working properly :)
Post Reply

Return to “Closed Bugs [GZDoom]”