mapinfo help please

General help and assistance forum.
Post Reply
nirch
Registered just to make one post
Posts: 1
Joined: Tue Oct 15, 2019 11:13 am

mapinfo help please

#1

Post by nirch » Sat Oct 19, 2019 12:35 pm

Hello all, i need some MAPINFO help please. I have recompiled several old maps to play with friends. The first part of the MAPINFO lump works ok (all the maps have new names), but the second 'cluster' part seems to do nothing. Or i probly don't understand where those entertext and exittext should appear on the screen... Anyone has any hint? Thank you.

Code: Select all

map MAP01 "MY MAP01"
{
   next = MAP02
   cluster = 1
   sky1 = RSKY1
}

map MAP02 "MY MAP07"
{
   next = MAP03
   cluster = 2
   sky1 = RSKY2
}

map MAP03 "MY MAP10"
{
   next = MAP04
   cluster = 3
   sky1 = RSKY2
}

cluster 1
{
   entertext = "Level OUR MAP01"
   exittext = "It was OUR MAP01"
}

cluster 2
{
   entertext = "Level OUR MAP07"
   exittext = "It was OUR MAP07"
}

cluster 3
{
   entertext = "Level OUR MAP10"
   exittext = "It was OUR MAP10"
}

Post Reply