26.01.2012, 19:28
Use strcat. Its very useful. Example:
pawn Код:
new string[512];
string[0] = '\0';
strcat(string, "You whats up dog?", 512);
strcat(string, "\nYo dog a new line", 512);
strcat(string, "\nAnother new line huh?", 512);
strcat(string, "\n Yup", 512);
strcat(string, "\nGet outta' here man", 512);
strcat(string, "\nYou got it chief", 512);

