Posts: 2
Threads: 1
Joined: Apr 2012
Reputation:
0
can anyone explain to me how strcat works?
Posts: 232
Threads: 36
Joined: Oct 2012
Reputation:
0
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..