[GZDooM] Sprite Offsets Fowled Up If DooM Names Used
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.
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.
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Is there a page somewhere with information on how to set up the IWADINFO lump?
What is the format?
What are the keywords?
Link please?
What is the format?
What are the keywords?
Link please?
-
-
- Posts: 4149
- Joined: Thu Jul 17, 2003 12:19 am
- Graphics Processor: nVidia (Legacy GZDoom)
- Location: British Columbia, Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Boingo_the_Clown wrote:Is there a page somewhere with information on how to set up the IWADINFO lump?
- Going standalone (A crash course in GZDoom modding
- also the github page
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
So does the IWADINFO lump go in my wad file, or do I have to included and altered version of zdoom.pk3 with my wad?
-
- Lead GZDoom+Raze Developer
- Posts: 49182
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
It goes in your WAD.
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Okay. That should be easy enough.
{EDIT:
Nope.
I added an IWADINFO lump to DeiMwolf with no change. The sprites are still buried in the floor.
If it helps, This is what I put in it.
}
{EDIT:
Nope.
I added an IWADINFO lump to DeiMwolf with no change. The sprites are still buried in the floor.
If it helps, This is what I put in it.
Code: Select all
IWad
{
Name = "DeiMWolf"
Game = "Doom"
Config = "DeiMWolf"
Mapinfo = "MAPINFO"
MustContain = "HEERA1"
BannerColors = "80 80 80", "40 00 00"
}
-
- Lead GZDoom+Raze Developer
- Posts: 49182
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
How did you load it - and how did you name it?
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
I placed it inside my wad as the very first entry.
-
- Posts: 13789
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Now rename the file itself "DeiMWolf.iwad"
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Close, but still not working.
-
- Lead GZDoom+Raze Developer
- Posts: 49182
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
The MAPINFO setting must point to a base MAPINFO, not to your own definition.
Put
in there. Actually, you just pointed out an omission in the IWADINFO code. This field should be optional but isn't.
Put
Code: Select all
Mapinfo = "mapinfo/mindefaults.txt"
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
I made the change, but the error message still occurs.
{{EDIT: It turned out Slade saved the file as DeiMWolf.wad instead of DeiMwolf.iwad. When I got it to save to DeiMWolf.iwad, GZDooM skipped past the fatal MAPINFO error ...
... and came up with a new fatal error.
Is this a bug in GZDooM's MAPINFO? }}
{{EDIT: It turned out Slade saved the file as DeiMWolf.wad instead of DeiMwolf.iwad. When I got it to save to DeiMWolf.iwad, GZDooM skipped past the fatal MAPINFO error ...
... and came up with a new fatal error.
That makes no sense. I did not use clearskills in my MAPINFO lump.You cannot use clearskills in a MAPINFO if you do not define any new skills after it.
Is this a bug in GZDooM's MAPINFO? }}
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Répondez s'il vous plaît.
-
- Posts: 13789
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
Instead of impatiently demanding a response in your bug report in a foreign language (you don't even need to know said language to know what that said) - please use the editing forum and ask for help there. And remember that no one is obligated to help you. Sometimes you just have to figure things out on your own. That means you have to poke at it - experiment with it - try different things - until something works.
-
- Posts: 139
- Joined: Mon Sep 17, 2012 7:25 am
- Location: Canada
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
I wouldn't call waiting almost two weeks for a response "impatient". Don't get angry because I politely said "answer please".
Since IWADINFO is currently nonfunctional, I will remove it from my mod. Then I will simply go through all my mods and rename the sprites. I wanted to avoid that, but it looks like that is the only solution currently available.
Please let me know when IWADINFO no longer crashes the game.
Since IWADINFO is currently nonfunctional, I will remove it from my mod. Then I will simply go through all my mods and rename the sprites. I wanted to avoid that, but it looks like that is the only solution currently available.
Please let me know when IWADINFO no longer crashes the game.
-
- Posts: 219
- Joined: Wed Jan 08, 2014 8:40 am
- Graphics Processor: nVidia with Vulkan support
- Location: Germany
Re: [GZDooM] Sprite Offsets Fowled Up If DooM Names Used
IWADINFO is working as intended, I am using it for one of my mods as well without any issues. So there's something wrong on your end. If possible send me your mod and I'll take a look at it if you want. But do that via PM then, as this thread is not the appropriate place to discuss this any further, as Rachael pointed out.