11.09.2011, 00:32
Tente com este aqui, verifique o cуdigo para entender melhor...
pawn Код:
SendClientMessageEx(playerid, cor, string[])
{
new Hora, Minuto, Segundo;
gettime(Hora, Minuto, Segundo);
new tmp2[34], tmp3[164];
format(tmp2, sizeof tmp2, "[%d - %d - %d]", Hora, Minuto, Segundo);
format(tmp3, sizeof tmp3, "%s %s", tmp2, string);
return SendClientMessage(playerid, cor, tmp3);
}
SendClientMessageToAllEx(cor, string[])
{
new Hora, Minuto, Segundo;
gettime(Hora, Minuto, Segundo);
new tmp2[34], tmp3[164];
format(tmp2, sizeof tmp2, "[%d:%d:%d]", Hora, Minuto, Segundo);
format(tmp3, sizeof tmp3, "%s %s", tmp2, string);
return SendClientMessageToAll(cor, tmp3);
}