Load more than 1 Iwad for a Pwad to work properly

Post a reply

Smilies
:D :) :( :o :shock: :? 8) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen: :angel: :angry: :beer: :bfg: :chaingun: :cheers: :blergh:
View more smilies

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1.5 MiB.

Expand view Topic review: Load more than 1 Iwad for a Pwad to work properly

Re: Load more than 1 Iwad for a Pwad to work properly

by Gez » Tue Jun 17, 2014 21:54

Doom will only load one IWAD at a time. Essentially, what happens with what you do is that the other IWAD is loaded as if it were a PWAD.

So what you need to do is to explicitly load the other as well. For instance, instead of drag-and-dropping just your mod to gzdoom.exe, select both doom.wad and your mod and drag them both together to gzdoom.exe.

You can also use [wiki]GAMEINFO[/wiki]. Use

Code: Select all

IWAD = "doom2.wad"
LOAD = "doom.wad"


Finally, keep in mind that only the ZDoom port family allow cumulative loading of texture definitions. In other ports closer to the original behavior, there's only one TEXTURE1 lump and only one PNAMES lump that's loaded, so in your case they'd get only the Ultimate Doom textures, and it's the Doom II textures that'd be missing. (And since they're not ZDoom either, they'd probably crash instead of replacing them with a placeholder checkerboard.)

Load more than 1 Iwad for a Pwad to work properly

by Cyborggeffien » Tue Jun 17, 2014 21:47

I was making a doom wad file. It uses both Ultimate doom and Doom 2 textures. Adding both Doom 2 and Doom.wad as a resource in Doom builder work just fine. When I test the map in Doom builder, as long as the wad files are added as resources, the ultimate doom textures will appear.

But I started the wad file using GZdoom alone, without testing it using Doom builder. Textures that are not in Doom 2 and are only in Ultimate doom appear as a blue and white grid. Doom 2 textures appear just fine.

How do you load more than one Iwad to get the textures that are used inside the Pwad to appear, both Ultimate Doom and Doom 2 textures?

Top