19.03.2018, 20:42
I have a cycle.
How to make the list of the cycle displayed in the chat in a row / line (not in the column, and row / row)
How to make the list of the cycle displayed in the chat in a row / line (not in the column, and row / row)
PHP код:
new string[50];
send(playerid, COLOR_GREEN, "Wanted");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(pl[i][pWlevel] > 0)
{
format(string,sizeof(string),"%s[ID:%d] level: %d",pl[i][pName],i,pl[i][pWlevel]);
send(playerid,COLOR_IVORY,string);
}
}