11.09.2011, 00:33
pawn Код:
SendClientMessageToAllEx(cor, string[])
{
gettime(Hora, Minuto, Segundo);
new tmp2[20], tmp3[128];
format(tmp2, 20, "[%d:%d:%d]", Hora, Minuto, Segundo);
format(tmp3, strlen(string), "%s %s", tmp2, string);
SendClientMessageToAll(cor, tmp3);
}
SendClientMessageEx(playerid, cor, const string[])
{
gettime(Hora, Minuto, Segundo);
new tmp2[20], tmp3[128];
format(tmp2, 20, "[%d - %d - %d]", Hora, Minuto, Segundo);
format(tmp3, 20, "%s %s", tmp2, string);
SendClientMessage(playerid, cor, tmp3);
return 1;
}