Quote:
Originally Posted by [ABK]Antonio
Instead you should join them with strcat
pawn Код:
strcat(sz_text, text, sizeof(sz_text));
Instead of
pawn Код:
format(sz_text, sizeof(sz_text), "%s\n%s", sz_text, text);
Though, make sure you put \n in the first format
Though I do see what you were trying to do - might as well just use strcat
|
Thanks for pointing that out, never thought of using strcat. As for the original issue, I'm come to the realization there is a looping issue. I put a print directly under.
pawn Код:
for(new m = 0; m < sizeof(AlternativeMusicInfo); m ++)
And nothing was printed into the console. Seeing this, I thought the 'sizeof(AlternativeMusicInfo);' was the problem, so I changed it to '6' and '7', yet it still had the same effect and result.