Jump to content

EXITTEXT not working SOLVED


Tindrone

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...