29.06.2014, 19:58
Segue o print e o codigo do onplayertext ele aparece a menssagem no chat sem o id mesmo estando mutado!!
pawn Код:
if(strlen(text) == strlen(nMsg[playerid]) && !strcmp(nMsg[playerid], text, false)){SendClientMessage(playerid, -1, "( ANTI - FLOOD ) Nгo repita a mesma mensagem!");return 0;}
if(Mute[playerid] == 1) return SendClientMessage(playerid, 0xFF0000AA, "( ANTI - FLOOD ) Vocк nгo pode digitar no chat enquanto estiver mutado..");
AFlood[playerid]++;
if(AFlood[playerid] == 2) SetTimerEx("Flood", 2500, 0 , "i" , playerid);
else if(AFlood[playerid] == 3) return SendClientMessage(playerid, 0xFF0000 , "( ANTI - FLOOD ) Nгo faзa flood ou vocк pode ser mutado.."), 0;
else if(AFlood[playerid] == 4)
{
SendClientMessage(playerid, 0xFF0000AA, "( ANTI - FLOOD ) Vocк foi mutado por 30 Segundos.");
Mute[playerid] = 1;
SetTimerEx("Flood2", 30000 , 0 , "i", playerid);
return 0;
}
format(String, sizeof(String), "(id:%d): {FFFFFF}%s",playerid, text);
SendPlayerMessageToAll(playerid, String);
return 0;