29.10.2012, 21:18
Well basically, you have a string, and you add other parts to that string. Ex
new str[50];
format(str,sizeof(str),"Id is: %d",playerid)
strcat(str," and this piece is added later");
Output should be: Id is 32 and this piece is added later..
new str[50];
format(str,sizeof(str),"Id is: %d",playerid)
strcat(str," and this piece is added later");
Output should be: Id is 32 and this piece is added later..