and you want a carage return for what? some limits the toolset has is no subscripted variables ie:
string sStringname1="name"
string sStringname2="a"
string sStringname3="b"
for x= 1 to 3
?=print sStringname(x) rem from basic, a quick example
next x
result would be :
name
a
b
so I dont think you can do the carage return, because there realy is no practle use since text display doesnt seem to be vary important in the game. But I could be wrong.
I my self come from old programing and I would find it useful in displaying text, I would also find subscripted variables useful.
the most you seem to be able to do is:
object oPlayer;
string szMessage;
string sString="some string";
int nCnt
for (nCnt=1;nCnt >3;nCnt++)
{
szMessage=sString+IntToString;
SendMessageToPC( oPlayer, szMessage)
}
so you should get message:
some string1
some string2
some string3
those are just some of the limits there are more.
I hope i answered your question, I like to know what you find out.