10.08.2011, 22:45
Eu Baixei Um ANTI FLOOD Aki Do Forum
Tem o Seguinte Aki
Achei Esses 2 Negocios Do FS Que Quero Por No Meu Gamemode
Mais Da Varios Erros Alguem Pode Ajudar a Sulocionar Meus Problemas?
Agradeзo Desde Ja
Tem o Seguinte Aki
PHP код:
public OnPlayerText(playerid, text[])
{
// Is the player flooding?
if(IsPlayerFlooding(playerid) && !IsPlayerAdmin(playerid))
{
SendClientMessage(playerid, 0xFF0000FF, "* You can only send a message once every two seconds.");
return 0;
}
PHP код:
stock IsPlayerFlooding(playerid)
{
if(GetTickCount() - iPlayerChatTime[playerid] < 2000)
return 1;
return 0;
}
Mais Da Varios Erros Alguem Pode Ajudar a Sulocionar Meus Problemas?
Agradeзo Desde Ja