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

How do you rename your map in automap and in intermission?

Question

I know that you're suppose to do something with MAPINFO, but beyond that, this script I made caused problems, like;
> D_DM2TTL Plays across MAP01

> The actual map name doesn't show up on the intermission screen

 

Nothing I've read online has really helped me but if you can, that'll be great.

coding.PNG

Share this post


Link to post

3 answers to this question

Recommended Posts

  • 0

That's the old format. Unless you are mapping for ZDaemon or Odamex, you should use the modern format. I translated it for you. This is for Doom 2, MAP01. Naturally, you will want to change stuff to fit your map.

map MAP01 "Entryway"
{
levelnum = 1
titlepatch = "CWILV00" // Include this line only if you are supplying a custom title image.
next = "MAP02"
secretnext = "MAP02"
sky1 = "SKY1", 0
cluster = 1
par = 30
music = "D_RUNNIN"
}

 

Share this post


Link to post
  • 0
23 hours ago, Empyre said:

That's the old format. Unless you are mapping for ZDaemon or Odamex, you should use the modern format. I translated it for you. This is for Doom 2, MAP01. Naturally, you will want to change stuff to fit your map.


map MAP01 "Entryway"
{
levelnum = 1
titlepatch = "CWILV00" // Include this line only if you are supplying a custom title image.
next = "MAP02"
secretnext = "MAP02"
sky1 = "SKY1", 0
cluster = 1
par = 30
music = "D_RUNNIN"
}

It said there was an error on line 10.

 

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  
×