24.12.2013, 14:12
Instead of these lines:
You could've just put it right outside the for loop and check the length (strlen) of the fstr string and if it is higher than 0, just print it. It saves you the weird if-statement.
pawn Code:
if(i == (MAX_PLAYERS - 1))
{
if(strlen(fstr)) SendClientMessage(playerid, 0x9BBDDEAA, fstr);
}