11.04.2012, 20:25
Aqui :
pawn Код:
#include <a_samp>
new TimerRelato;
new TempoRelato[MAX_PLAYERS];
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" CidadeNovaRP OWNED");
print("--------------------------------------\n");
return 1;
}
forward RelatarN(playerid);
public RelatarN(playerid)
{
if ((TempoRelato[playerid]) >= 1)
{
TempoRelato[playerid] --;
}
else if ((TempoRelato[playerid]) <= 0)
{
SendClientMessage(playerid, 0xF68E00F6, "Vocк jб pode usar o Comando: /relatorio novamente!");
KillTimer(TimerRelato);
TempoRelato[playerid] = 0;
}
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmd, "/relatorio", true) == 0 || strcmp(cmd, "/relato", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if ((TempoRelato[playerid]) >= 1)
{
TempoRelato[playerid] --;
format(string, sizeof(string), "Faltam %d segundos para usar este Comando novamente.", TempoRelato[playerid]);
SendClientMessage(playerid, COLOR_GREY, string);
return 1;
}
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк 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;
}
if(TentouDivulgar(result))
{
if(cdivulgar[playerid] >= 6)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Aqui vocк nгo pode anunciar servidores!");
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Cuidado, Poderб ser banido.");
SendClientMessage(playerid, COLOR_LIGHTBLUE,"Evite digitar muitos nъmeros consecutivos.");
PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
Kick(playerid);
}
GetPlayerName(playerid, playername, MAX_PLAYER_NAME);
format(string, 128, "AdmAviso: [%d]%s tentou divulgar: %s.",playerid,playername,result);
ABroadCast(COLOR_YELLOW,string,1);
DivulgouLog(string);
cdivulgar[playerid] += 1;
return 1;
}
/*if(pMandoRelato[playerid] == 1)
{
SendClientMessage(playerid,COLOR_GRAD2,"Espere 8 segundos para poder mandar o relatorio novamente!");
return 1;
}*/
if(PlayerInfo[playerid][pVIP] == 1)
{
new lol;
lol = PlayerInfo[playerid][pVIP];
format(string, sizeof(string), "==> Relatуrio VIP de %s - ID[%d]: %s <==", sendername, playerid, lol, (result));
ABroadCast(COR_PRATA,string,1);
SendClientMessage(playerid, COLOR_YELLOW, "Seu relatуrio VIP foi enviado aos admins, aguarde uma resposta...");
//pMandoRelato[playerid] = 1;
TempoRelato = SetTimer("MandoRelato", 7000, 0);
}
else
{
format(string, sizeof(string), "==> Relatуrio de %s(%d): %s <==", sendername, playerid, (result));
ABroadCast(0xFFFF66FF,string,1);
SendClientMessage(playerid, COLOR_YELLOW, "Seu relatуrio foi enviado aos admins, aguarde uma resposta...");
//pMandoRelato[playerid] = 1;
TempoRelato = SetTimer("MandoRelato", 8000, 0);
}
}
return 1;
}
return 0;
}