09.02.2011, 05:37
Hello, how to join 2 variable with array into a string?
That doesn't work.
Код:
new s[256];
new Name[256];
new FullLine[256];
if(row < TEAM_MENU_ITEMS) {
format(s,256,"You selected team %s",TeamStrings[row]);
SendClientMessage(playerid,0xFFFFFFFF,s);
GetPlayerName(playerid,Name,256);
format(FullLine,256,B "%s has joined team " TeamStrings[row],Name);
SendClientMessageToAll(COLOR_RED,FullLine);

