[Ajuda] Relatorio com tempo
#1

Bom queria que me ajudasem a por o /relatorio com tempo
ta ai o code:
Quote:

if(strcmp(cmd, "/relatorio", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Voce nгo estб logado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /relatorio [texto]");
return 1;
}
format(string, sizeof(string), "[ATENЗГO] ==> Relatorio de %s(%d): %s", sendername, playerid, (result));
ABroadCast(COLOR_LIGHTBLUE,string,1);
SendClientMessage(playerid, COLOR_YELLOW, "Sua mensagem foi enviada б administraзгo,Aguarde uma resposta.");
}
return 1;
}

@edit Tempo de 10s POr exemplo
Espere 10 segundos para mandar outro /relatorio.
Reply
#2

Espero ajuda-lo!
pawn Код:
if(GetTickCount() - FloodAn[playerid] < 10000)
        {
            format(string, sizeof(string), "   Espere %d segundos para um novo anuncio!",10-(GetTickCount() - FloodAn[playerid])/1000);
            SendClientMessage(playerid, COLOR_GRAD2, string);
            return 1;
        }
Reply
#3

use isto!

pawn Код:
new EnviouRelatorio[MAX_PLAYERS];//topo do gm
new timerrelatorio;//topo do gm tambйm
troque seu /relatorio por este
pawn Код:
if(strcmp(cmd, "/relatorio", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Voce nгo estб logado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /relatorio [texto]");
return 1;
}
format(string, sizeof(string), "[ATENЗГO] ==> Relatorio de %s(%d): %s", sendername, playerid, (result));
ABroadCast(COLOR_LIGHTBLUE,string,1);
EnviouRelatorio[playerid] = 1;
SendClientMessage(playerid, COLOR_YELLOW, "Sua mensagem foi enviada б administraзгo,Aguarde uma
resposta."
);
timerrelatorio = SetTimerEx("TempoRelatorio", 10000, 0, "i", playerid);
if(EnviouRelatorio[playerid] == 1)
{
SendClientMessage(playerid,0x808080C8,"Vocк jб enviou um relatorio! Aguarde 10 segundos para enviar outro!");
return 1;
}
}
return 1;
}
final do gm:

pawn Код:
forward TempoRelatorio(playerid);
public TempoRelatorio(playerid)
{
EnviouRelatorio[playerid] = 0;
KillTimer(timerrelatorio);
return 1;
}
Espero ter ajudado
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)