[DUV] /relatorio sem flood - 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: [DUV] /relatorio sem flood (
/showthread.php?tid=157731)
[DUV] /relatorio sem flood -
Fuchii - 07.07.2010
Eu queria saber como coloca para so poder dar /relatorio a cada 5 segundos ? Para nao ter mais floods .
Re: [DUV] /relatorio sem flood -
NathanLive - 07.07.2010
man olha meu tutorial:
http://forum.sa-mp.com/showthread.ph...192#post740192
sу vaoi ter q usar SetTimer.
Re: [DUV] /relatorio sem flood -
keller012 - 07.07.2010
Код:
new trelato[MAX_PLAYERS];
forward temporelato(playerid);
coloca isso no comando /relatorio
Код:
if (trelato[playerid] == 1)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Aguarde 5 segundos para usar o comando novamente");
return 1;
}
SetTimerEx("temporelato",5000,0,"i",playerid);
trelato[playerid] = 1;
cria esse public
Код:
public temporelato(playerid)
{
trelato[playerid] = 0;
}
pronto
Re: [DUV] /relatorio sem flood -
rezzutto - 30.07.2010
vllws mano tava atras Disso
Re: [DUV] /relatorio sem flood -
Fuchii - 01.08.2010
Obrigadгo !