Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
carter

How do you change the map name

Recommended Posts

I can't seem to figure out how you change the map name, can someone help me? I am using GZDoom Builder, game configuration is GZDOOM: Doom 2 (UMDF)

Share this post


Link to post

If you mean like changing it from MAP01 to MAP03 or something you can do it from "Edit > Map Options", If you mean changing the title of the map you can add a new lump to your wad and name it MAPINFO using Slade. go to "Archive > New > New Entry", name it MAPINFO and click "view as text" then you can add properties of your map there.

 

https://zdoom.org/wiki/MAPINFO/Map_definition

map MAP01 "LEVEL 1"
{
sky1 = "SKY1", 0
next = "MAP02"
music "D_RUNNIN"
}

 

Share this post


Link to post

 

12 hours ago, tempdecal.wad said:

If you mean like changing it from MAP01 to MAP03 or something you can do it from "Edit > Map Options", If you mean changing the title of the map you can add a new lump to your wad and name it MAPINFO using Slade. go to "Archive > New > New Entry", name it MAPINFO and click "view as text" then you can add properties of your map there.

 

https://zdoom.org/wiki/MAPINFO/Map_definition


map MAP01 "LEVEL 1"
{
sky1 = "SKY1", 0
next = "MAP02"
music "D_RUNNIN"
}

 

Thanks so much!

Share this post


Link to post

You can also use a DEHACKED file to allow it to work with most source ports. Below is what it looks like for Hell Revealed's first 7 levels, as an example:
 

Patch File for DeHackEd v3.0

# General version information
Doom version = 21
Patch format = 6

[STRINGS]
HUSTR_1 = MAP01: Into the Gate
HUSTR_2 = MAP02: Gateway Lab
HUSTR_3 = MAP03: The Dumpster
HUSTR_4 = MAP04: The Garden Terminal
HUSTR_5 = MAP05: Core Infection
HUSTR_6 = MAP06: The Round Crossroads
HUSTR_7 = MAP07: Arachnophobia

Stick that into a lump called DEHACKED in the wad. The above is Boom-style, but you can do vanilla style also, though that should be done with WhackEd.

Share this post


Link to post
On 8/31/2019 at 6:18 PM, 3saster said:

You can also use a DEHACKED file to allow it to work with most source ports. Below is what it looks like for Hell Revealed's first 7 levels, as an example:
 


Patch File for DeHackEd v3.0

# General version information
Doom version = 21
Patch format = 6

[STRINGS]
HUSTR_1 = MAP01: Into the Gate
HUSTR_2 = MAP02: Gateway Lab
HUSTR_3 = MAP03: The Dumpster
HUSTR_4 = MAP04: The Garden Terminal
HUSTR_5 = MAP05: Core Infection
HUSTR_6 = MAP06: The Round Crossroads
HUSTR_7 = MAP07: Arachnophobia

Stick that into a lump called DEHACKED in the wad. The above is Boom-style, but you can do vanilla style also, though that should be done with WhackEd.

 

On 8/31/2019 at 6:18 PM, 3saster said:

You can also use a DEHACKED file to allow it to work with most source ports. Below is what it looks like for Hell Revealed's first 7 levels, as an example:
 


Patch File for DeHackEd v3.0

# General version information
Doom version = 21
Patch format = 6

[STRINGS]
HUSTR_1 = MAP01: Into the Gate
HUSTR_2 = MAP02: Gateway Lab
HUSTR_3 = MAP03: The Dumpster
HUSTR_4 = MAP04: The Garden Terminal
HUSTR_5 = MAP05: Core Infection
HUSTR_6 = MAP06: The Round Crossroads
HUSTR_7 = MAP07: Arachnophobia

Stick that into a lump called DEHACKED in the wad. The above is Boom-style, but you can do vanilla style also, though that should be done with WhackEd.

Good to know.

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
×