#define FLOODTIME 3
public OnPlayerText(playerid, text[])
{
//Flood time
if(GetPVarInt(playerid,\"FloodTime\") > gettime()){
SendClientMessage(playerid, 0xFF0000AA, \"{ff0000}Várj {ffffff}\"#FLOODTIME\" {ff0000}másodpercet míg újból írsz!\");
return 0;
}
SetPVarInt(playerid,\"FloodTime\", gettime() + FLOODTIME);
return 0;
}