18.01.2014, 08:33
Quote:
There isn't. I tried this on my main server and my local server. Both crash. You might want to try this too.
How does one receive it in chunks...? Not even sure if that makes sense for this scenario. Never the less, in chunks would be slow as hell. |
pawn Код:
new string[1024];
while(strlen(data) > 1024)
{
format(string,sizeof(string),data);
strdel(data,0,1024);
printf(string);
}
printf(data);