Jump to content
  • 0

Weird music-glitch in map03


Lezuum

Question

So, weirdly enough I got another weird glitch in my mappack.

 

When I die in map03, the intermission-theme starts playing and it doesn't stop...

 

Edited by Lezuum

Share this post


Link to post

6 answers to this question

Recommended Posts

  • 0

the first thing jumping out to me is that you're not using curly braces in your definitions for some reason. I would change that first:

 

map E1M8 "Phobos Anomaly"
{
   levelnum = 8
   titlepatch = "WILV07"
   next = "EndGame1"
   secretnext = "E1M9"
   sky1 = "SKY1", 0
   cluster = 1
   par = 30
   nointermission
   nosoundclipping
   baronspecial
   specialaction_lowerfloor
   sucktime = 1
   music = "$MUSIC_E1M8"
}

See how there are braces enclosing the map's properties? Try adding them in and see if that takes care of it first.

Share this post


Link to post
  • 0
On 10/12/2022 at 1:00 AM, Lezuum said:

So, weirdly enough I got another weird glitch in my mappack.

 

 

You are using the deprecated form of MAPINFO, for example the old form of MAPINFO for DOOM2.

To use MAPINFO properly see the ZDoom WIKI entry

 

Your MAPINFO should look like this with braces and quotes:

 

Quote

 

map MAP01 "Secret Facility"

{

next   =  "MAP02"

music =  "D_RUBBIN"

}

 

 

etc

 

or use ZMAPINFO if you want to avoid breaking compatibility with other ports.

Edited by Kappes Buur

Share this post


Link to post
  • 0
3 minutes ago, Lezuum said:

tried it and it breaks the wad.

maperror.jpg

I suspect you just added the braces and didn't add the equal sign. Post your MAPINFO lump again so we can verify.

Share this post


Link to post
  • 0
2 hours ago, Lezuum said:

ah stupid me. thank you! :-)

Glad that helped! The equal sign wasn't needed in old MAPINFO, so it's easy to overlook.

Edited by bofu

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...