I'm posting here just to spite you. You need a serious attitude adjustment. We are not code robots, that is not what this forum is for.
If you could not figure out what I was saying, you need to go back to the basics and try to learn something. Multiplayer is the least of your worries.
Printing text to the screen, and formatting text are very basic functions that should not be hard to figure out. Did you even consult your help files on the TEXT command? Did you even try to run some random test code based on my example?
People like you are the reason people like me feel anxious about asking people smarter than me for help on a problem. The only person who ruined this thread is you and your demand for instant satisfaction.
Here.. I did it for you. It's not elegant and not exactly what you want. But if you can't make it work based on this code, then I don't know what to tell you.
SET DISPLAY MODE 640,480,32
DisplWidth = SCREEN WIDTH()
DisplHeight = SCREEN HEIGHT()
Spacer = 50
Global maxservers=10
Dim Servername$(maxservers) as string
Servername$(0) = "Zealous Server"
Servername$(1) = "Kikoa Server"
Servername$(2) = "Test1 Server"
Servername$(3) = "Test2 Server"
Servername$(4) = "Test3 Server"
Servername$(5) = "Test4 Server"
Servername$(6) = "Test5 Server"
Servername$(7) = "Test6 Server"
Servername$(8) = "Test7 Server"
Col1x = 0
Col2x = Col1x + text width(Servername$(1)) + Spacer
Col3x = Col2x + text width(Servername$(2)) + Spacer
Text Col1x, 10, Servername$(0)
Text Col2x, 10, Servername$(1)
Text Col3x, 10, Servername$(2)
Text Col1x, 35, Servername$(3)
Text Col2x, 35, Servername$(4)
Text Col3x, 35, Servername$(5)
Text Col1x, 60, Servername$(6)
Text Col2x, 60, Servername$(7)
Text Col3x, 60, Servername$(8)
wait key
end
Because of your responses to this thread, and a lack of time, I have intentionally left some errors in the code and have not commented it.
Have fun.