Getting rid of shot decals

Discuss anything ZDoom-related that doesn't fall into one of the other categories.
Anonymous

Getting rid of shot decals

Post by Anonymous »

Hello everyone, I'm a stupid newbie to this site and have only had ZDoom 1.2 for a few hours.

Anyway, is there a way to get rid of bullet decals (and other projectile decals) but leave blood splats? (I have a cool level I'm working on that would look cool with monster blood on the wall but stupid with bullet holes.) I tried setting MissileDecals to False but that didn't work. The only solution that halfway worked was setting the maximum number of decals to zero, but that also disables blood stains. Any solutions? Thanks.
User avatar
Zell
Posts: 791
Joined: Thu Jul 24, 2003 7:47 am
Location: IN A GODDAMN BOX[In Erie.]

Post by Zell »

edit zdoom.wad

anyway, its time to update! we are at 2.047...
Anonymous

Post by Anonymous »

Erg, I meant to say 2.0. I had 1.22 for a LOOONNNG time up until today. Thanks for the advice.
User avatar
HotWax
Posts: 10002
Joined: Fri Jul 18, 2003 6:18 pm
Location: Idaho Falls, ID

Post by HotWax »

The specific lump you need to be concerned with is the DECALDEF lump from ZDOOM.WAD. Extract it, remove the entries you don't want, and slap it in a PWAD and you're done. You also use that lump to change existing decals or define new ones.
User avatar
Nanami
Posts: 1066
Joined: Tue Jul 15, 2003 5:13 pm
Location: That little island pritch created.

Post by Nanami »

ZooM removes the BFG decal. All you need to do is make a blank picture and reference it like this in DECALDEF:

Code: Select all

/***** Blank Decal *****/
decal Blank
{
	pic BLDECAL
	shade "00 00 00"
}

generator BFGBall			Blank
If you want anything else to not have a decal, add it to the generator list.
User avatar
Enjay
 
 
Posts: 26476
Joined: Tue Jul 15, 2003 4:58 pm
Location: Scotland

Post by Enjay »

HotWax wrote:Extract it, remove the entries you don't want, and slap it in a PWAD and you're done.
Don't think that would work. Remember, DECALDEF is cumulative. If you have removed an entry then the one from Zdoom.wad would still be used even if you put a decaldef with the missing definitions into your WAD. You'd have to point the generators at somthing else - like a blank decal if you just want to remove certain decals (as Nanami suggests).

Just for info (no use in this case) you can set the variable cl_maxdecals to 0 to remove all decals. It's 1024 by default.
User avatar
Bio Hazard
Posts: 4019
Joined: Fri Aug 15, 2003 8:15 pm
Location: ferret ~/C/ZDL $

Post by Bio Hazard »

Nanami wrote:ZooM
What is all this i hear about this "ZooM"

it sounds cool, where can i get info?
User avatar
Zell
Posts: 791
Joined: Thu Jul 24, 2003 7:47 am
Location: IN A GODDAMN BOX[In Erie.]

Post by Zell »

User avatar
Kate
... in rememberance ...
Posts: 2975
Joined: Tue Jul 15, 2003 8:06 pm

Post by Kate »

actually the page moved to http://zoom.mancubus.net
also an easier way to get rid of decals is to type "cl_maxdecals 0"(without the quotes) in the console.
User avatar
Enjay
 
 
Posts: 26476
Joined: Tue Jul 15, 2003 4:58 pm
Location: Scotland

Post by Enjay »

Destroyer wrote:also an easier way to get rid of decals is to type "cl_maxdecals 0"(without the quotes) in the console.
Enjay wrote:Just for info (no use in this case) you can set the variable cl_maxdecals to 0 to remove all decals. It's 1024 by default.
:P :lol:



Although, in this case, Dice wants to get rid of some, but not all the decals. Not just reduce the number either - Dice wants to remove specific decals.
User avatar
Xaser
 
 
Posts: 10772
Joined: Sun Jul 20, 2003 12:15 pm

Post by Xaser »

Nanami wrote:ZooM removes the BFG decal. All you need to do is make a blank picture and reference it like this in DECALDEF:

Code: Select all

/***** Blank Decal *****/
decal Blank
{
	pic BLDECAL
	shade "00 00 00"
}

generator BFGBall			Blank
If you want anything else to not have a decal, add it to the generator list.
So THAT's how you do it. I've been wondering for quite a while now. That's really cool!
User avatar
HotWax
Posts: 10002
Joined: Fri Jul 18, 2003 6:18 pm
Location: Idaho Falls, ID

Post by HotWax »

Enjay wrote:Don't think that would work. Remember, DECALDEF is cumulative. If you have removed an entry then the one from Zdoom.wad would still be used even if you put a decaldef with the missing definitions into your WAD. You'd have to point the generators at somthing else - like a blank decal if you just want to remove certain decals (as Nanami suggests).
I stand corrected.

Return to “General”