[AJUDA] Anti-Flood Comandos! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Anti-Flood Comandos! (
/showthread.php?tid=324101)
[AJUDA] Anti-Flood Comandos! -
Mercurio - 08.03.2012
Alguйm poderia me ajuda com um anti flood comandos? por favor, serei muito grato.
Obrigado
Re: [AJUDA] Anti-Flood Comandos! -
Guerra1 - 08.03.2012
Da para ser mais especifico ?
Respuesta: [AJUDA] Anti-Flood Comandos! -
ErickOwnZ - 08.03.2012
Topo do gamemode
pawn Код:
forward antiflood(playerid);
new antiflood[MAX_PLAYERS];
Final ou com as outras publics.
pawn Код:
public antiflood(playerid)
{
if(IsPlayerConnected(playerid))
{
if(antiflood[playerid] == 1)
{
antiflood[playerid] = 0;
}
}
return true;
}
Exemplo
Topo do gamemode
pawn Код:
forward antiflood(playerid);
new antiflood[MAX_PLAYERS];
Final ou com as outras publics.
pawn Код:
public antiflood(playerid)
{
if(IsPlayerConnected(playerid))
{
if(antiflood[playerid] == 1)
{
antiflood[playerid] = 0;
}
}
return true;
}
Exemplo
Topo do gamemode
pawn Код:
forward antiflood(playerid);
new antiflood[MAX_PLAYERS];
Final ou com as outras publics.
pawn Код:
public antiflood(playerid)
{
if(IsPlayerConnected(playerid))
{
if(antiflood[playerid] == 1)
{
antiflood[playerid] = 0;
}
}
return true;
}
Comando com o anti-flood
pawn Код:
if(strcmp(cmd, "/oiantiflood", true) == 0)
{
if(antiflood[playerid] == 1)
{
SendClientMessage(playerid, -1, " Aguarde 5 segundos...");
return 1;
}
else if(antiflood[playerid] == 0)
{
SendClientMessage(playerid, -1, " Oi -q ");
antiflood[playerid] = 1;
SetTimerEx("antiflood", 5000, false, "i", playerid);
return true;
}
return 1;
}
Nгo testei, mas tenta ae D:
Re: [AJUDA] Anti-Flood Comandos! -
Mercurio - 08.03.2012
Vlw Erick '-'
10 exemplos -qq