26.02.2013, 13:21
quick sketch.
pawn Код:
inputtext[]
new text[2][128];
if(strlen(inputtext) > 128)
{
strmid(text[0],inputtext,0,127,128); //text[0] will contain text from 0-127
strmid(text[1],inputtext,128,strlen(inputtext),128);//text[1] will contain rest of the string
}