is there a way to concat several strings together? I've been trying this, but it doesn't compile...
void DoPrint( string print_stringA, string print_stringB )
{
string s;
s = print_stringA + print_stringB;
PrintCenter( ImageWidth(v1_vclayer)/2, ImageHeight(v1_vclayer)/2, v1_vclayer, v1rpg_SmallFont, s );
}