Help with using MAPINFO

Archive of the old editing forum
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Locked
rico345
Posts: 193
Joined: Mon Sep 08, 2008 5:24 am
Location: Gimhae City, Republic Of Korea

Help with using MAPINFO

Post by rico345 »

Hey guys!
I have some trouble with using MAPINFO lumps, so I need help.

What I want is simple,
Define 3 episodes and each episodes has different maps.

And This is my MAPINFO :

Code: Select all

clearepisodes
episode TN01
{
	name = "Training"
}

episode MAP01
{
	name = "Last Stand"
}

map TN01 "Location : Unknown"
{
	levelnum=1
	sky1="SKY1"
	music=""
	next="EndTitle"
	nointermission
	fallingdamage
}

map MAP01 "Location : Rio De Janeiro"
{
	levelnum=2
	sky1="SKY1"
	music=""
	next="MAP02"
	nointermission
	fallingdamage
}

map MAP02 "Location : Busan"
{
	levelnum=3
	sky1="SKY1"
	music=""
	next="MAP03"
	nointermission
	fallingdamage
}

map MAP03 "Location : Tokyo"
{
	levelnum=4
	sky1="SKY1"
	music=""
	next="MAP04"
	nointermission
	fallingdamage
}
	
map MAP04 "Location : Hamburg"
{
	levelnum=5
	sky1="SKY1"
	music=""
	next="MAP05"
	nointermission
	fallingdamage
}
	
map MAP05 "Location : Las Vegas"
{
	levelnum=6
	sky1="SKY1"
	music=""
	next="MAP06"
	nointermission
	fallingdamage
}
	
map MAP06 "Location : Beijing"
{
	levelnum=7
	sky1="SKY1"
	music=""
	next="EndTitle"
	nointermission
	fallingdamage
}

Looks like there is no problem.

Episode defines working well, but maps are not.
Just one map clear makes game end. (To Doom2 clear)

I just want connect each maps.
What should I do? and What is the problem?
Blue Shadow
Posts: 5043
Joined: Sun Nov 14, 2010 12:59 am

Re: Help with using MAPINFO

Post by Blue Shadow »

Code: Select all

map TN01 "Location : Unknown"
{
   levelnum=1
   sky1="SKY1"
   music=""
   next="EndTitle" // <--- Shouldn't this be "MAP01" instead?
   nointermission
   fallingdamage
}
rico345
Posts: 193
Joined: Mon Sep 08, 2008 5:24 am
Location: Gimhae City, Republic Of Korea

Re: Help with using MAPINFO

Post by rico345 »

Blue Shadow wrote:

Code: Select all

map TN01 "Location : Unknown"
{
   levelnum=1
   sky1="SKY1"
   music=""
   next="EndTitle" // <--- Shouldn't this be "MAP01" instead?
   nointermission
   fallingdamage
}
Nope, there is no next level in Training Episode.
TN01 is training level and MAP01~MAP06 are another Episode levels.
so They(TN01, MAP01) should not be connect. (Actually it is not important I think ^^ This is not my actual problem)
Locked

Return to “Editing (Archive)”