Cutstuff Forum

Mega Man 8-bit Deathmatch => Help & Editing => Topic started by: Tails_Of_Tales on May 14, 2011, 01:29:26 PM

Title: Map Making Error, please help
Post by: Tails_Of_Tales on May 14, 2011, 01:29:26 PM
I don't know why my map keeps doing this, it bugs me so much I wanna just destroy it.

I can load my map into MM8BDM offline by putting the wad file in and then typing MAP TUR01 on the console. I can't find it on the offline map select, so I can only use the console to find it.

Also, if I load my map to host on an online match, it says "map TUR01 doesn't exist"

..????? why the **** does it do that?
Title: Re: Map Making Error, please help
Post by: Ivory on May 14, 2011, 01:53:32 PM
sounds like you lack mapinfo.

http://www.cutstuff.net/forum/viewtopic.php?f=29&t=2512
Flanny's guide explains it. I'll summarize it here.
Code: [Select]
map IDM01 "Sand Canyon" //Level Code as you made it in Doom Builder and the "Map name"
{
   next = "IDM02" //next map in default rotation
   sky1 = "BLACK", 0 //in case you don't have a skybox.
   cluster = 1 //Leave it alone
   music = "IDMMUS1" //Music file name
   aircontrol = 0.5 //Leave it alone
   forcenoskystretch //Leave it alone
   clipmidtextures //Leave it alone
   }

You'll have to use SlumpED or Slade3 in order to put the mapinfo inside the map.wad. simply a file called mapinfo and the above code copy and pasted. Of course you'll have to modify it with your own map details.

Below is the code of what your mapinfo should look like.
Code: [Select]
map TUR01 "Name Here"
{
   next = "TUR01" //Unless you have a TUR02 to go to next
   sky1 = "BLACK", 0
   cluster = 1
   music = "Music File Name Here"
   aircontrol = 0.5
   forcenoskystretch
   clipmidtextures
   }
Title: Re: Map Making Error, please help
Post by: Tails_Of_Tales on May 15, 2011, 09:41:29 PM
Quote from: "Ivory"
sounds like you lack mapinfo.

http://www.cutstuff.net/forum/viewtopic.php?f=29&t=2512
Flanny's guide explains it. I'll summarize it here.
Code: [Select]
map IDM01 "Sand Canyon" //Level Code as you made it in Doom Builder and the "Map name"
{
   next = "IDM02" //next map in default rotation
   sky1 = "BLACK", 0 //in case you don't have a skybox.
   cluster = 1 //Leave it alone
   music = "IDMMUS1" //Music file name
   aircontrol = 0.5 //Leave it alone
   forcenoskystretch //Leave it alone
   clipmidtextures //Leave it alone
   }

You'll have to use SlumpED or Slade3 in order to put the mapinfo inside the map.wad. simply a file called mapinfo and the above code copy and pasted. Of course you'll have to modify it with your own map details.

Below is the code of what your mapinfo should look like.
Code: [Select]
map TUR01 "Name Here"
{
   next = "TUR01" //Unless you have a TUR02 to go to next
   sky1 = "BLACK", 0
   cluster = 1
   music = "Music File Name Here"
   aircontrol = 0.5
   forcenoskystretch
   clipmidtextures
   }

well, thank u for the help. :D
Title: Re: Map Making Error, please help
Post by: OZX on May 16, 2011, 08:04:09 PM
ivory, thank you for making this a alot easier.just thank you