08.10.2017, 10:16
Avoid returning SendClientMessage, it's ambiguous and confusing.
pawn Код:
cmd:F(playerid, params[])
{
new result[64];
if(sscanf(params, "s[64]", result))
{
SendClientMessage(playerid, COLOR_WHITE, "Usage: /F [Text]");
return 1;
}
//if the params are correct, then... (add code below)
return 1;
}