Page 1 of 1
[96] ZDoomcmp1.wad problem
Posted: Tue Mar 01, 2005 10:23 pm
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.
Posted: Tue Mar 01, 2005 11:18 pm
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.
Posted: Wed Mar 02, 2005 1:27 am
by Firefox
All the weapons are back and working again. You have been really kind, thank you very much.

Posted: Wed Mar 02, 2005 3:43 am
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.
Posted: Wed Mar 02, 2005 12:16 pm
by Firefox
Thanks for the info.
Re: [96] ZDoomcmp1.wad problem
Posted: Thu Mar 03, 2005 10:06 pm
by Bio Hazard
Firefox wrote:it wouldn't freeze none of the enemys
well then its working properly
