Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Doom_user

Can the radiation suit palettes be changed?

Recommended Posts

Yes it does; you can edit PLAYPAL, which contains the palettes from where Doom reads dynamic color changes.

Share this post


Link to post

I know you can. One of the first wads that i played about 5-6 years ago was Slaughter House DM; a map that was a large house filled with weapons. The radiation suit was a scuba diving tank and you needed it to get the BFG which was in the Pool. The color was changed to a blue tone.

Share this post


Link to post

This can be done with Omgifol.

The following script builds a WAD that changes the radiation suit color to blue:

from omg import *
from omg.playpal import *

color = (0, 0, 255)
intensity = 0.2
iwad = "doom.wad"
output = "filename.wad"

p = Playpal(WAD(iwad).data["PLAYPAL"])
p.build_suit(color, intensity)
o = WAD()
o.data["PLAYPAL"] = p.to_lump()
o.to_file(output)

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
Sign in to follow this  
×