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

EXITTEXT not working SOLVED

Recommended Posts

in the wad I'm working on at the end of the first level is an intermission text screen but for some reason it isn't showing up. my MAPINFO looks like this :
map MAP01 "Command Center"
{
sky1 = "SKY2"
music = "d_dead"
next = MAP30
cluster = 1

clusterdef= 1
FLAT= "SKIN2"
exittext = "As you enter farther into the command center you","find a creature of sin and it is clear" ,"what you have to do."
}

Share this post


Link to post

Remove the extra quotes inside the text

Eg "X","Y" becomes "XY"

At least that's what I remember.

Share this post


Link to post

weird for me it didn't work when I changed it to:
exittext = "As you enter farther into the command center , you find a creature of sin and it is clear ,what you have to do."

Share this post


Link to post

The clusterdef block should be its own block, not within the map block.

map MAP01 "Command Center" {
  sky1 = "SKY2"
  music = "d_dead"
  next = MAP30
  cluster = 1
}
clusterdef 1 {
  FLAT= "SKIN2"
  exittext = "As you enter farther into the command center you","find a creature of sin and it is clear" ,"what you have to do."
}

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
×