07.09.2014, 12:31
pawn Код:
public OnPlayerText(playerid, text[])
{
new i;
while (text[++i])
{
if ('A' <= text[i] <= 'Z') text[i] |= 0x20;
}
new st_[128];
format(st_, sizeof(st_), "%s", text);
SendClientMessageToAll(-1, st_);
return 0;
}