Quote:
Originally Posted by Logitech90
Because you're adding multiple lines everytime.You've to add ONE line per strcat.You can't use all this values in a single strcat,you're to divide it.Ex:
pawn Код:
strcat(str, "{FFFFFF}Niks: {E11D36}%s", PlayerName2(player1));
And so on.
|
No-no-no. strcat != format. You got to format each line separately before inserting it into the large string with strcat.