[AJUDA] Ban por ip tb -
junioor - 09.02.2011
Boa noite!
Venho pediir a ajuda de vocкs com o sistema de ban do meu server eu gostaria que ele desse ban por ip tb ele so ta dando ban por nick
Sistema:
pawn Код:
if(strcmp(cmd, "/ban", true) == 0) {
if(GetPlayerLevel(playerid) < 4) return SendClientMessage(playerid,0xDEEE20FF,"[INFO]: Vocк nгo tem nivel necessбrio para usar este comando.");
new Hours,Minutes,Seconds,Days,Months,Years;
gettime(Hours, Minutes, Seconds);getdate(Years, Months, Days);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, 0x007FFFAA, "USE: /ban [playerid] [motivo]");
return 1;}
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new offset = idx;
new reason[64];
while ((idx < length) && ((idx - offset) < (sizeof(reason) - 1))) {
reason[idx - offset] = cmdtext[idx];
idx++;
}
reason[idx - offset] = EOS;
new playa = strval(tmp);
GetPlayerName(playa, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, NomePlayer, sizeof(NomePlayer));
format(string, sizeof(string), "[INFO]: %s foi banido pelo Administrador || %s. || Motivo: %s ||",giveplayer ,NomePlayer, reason);
SendClientMessageToAll(0x007FFFAA, string);
SendClientMessage(playa,Vermelho,"________________________________________________________________");
format(string, sizeof(string), "Vocк esta banido.");
SendClientMessage(playa,Vermelho, string);
format(string, sizeof(string), "Banido pelo administrador: %s", NomePlayer);
SendClientMessage(playa,0x007FFFAA, string);
format(string, sizeof(string),"Motivo: %s ", reason);
SendClientMessage(playa,0x007FFFAA, string);
format(string, sizeof(string), "Data: %d/%d/%d", Days,Months,Years);
SendClientMessage(playa,0x007FFFAA,string);
format(string, sizeof(string), "Hora %d:%d:%d",Hours,Minutes,Seconds);
SendClientMessage(playa,0x007FFFAA,string);
SendClientMessage(playa,Vermelho,"_____________________________________________________________");
Banido[playerid] = giveplayer;
Banidor[playerid] = NomePlayer;
Motivo[playerid] = reason;
Dia[playerid] = Days;
Mes[playerid] = Months;
Ano[playerid] = Years;
new file[128],name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(file,sizeof(file),"/sbadmin/Ban/%s.ini",name);
if(!fexist(file)) {
dini_Create(file);
dini_Set(file,"Banido", giveplayer);
dini_Set(file,"Banidor", NomePlayer);
dini_Set(file, "Motivo", reason);
dini_IntSet(file, "Dia", Days);
dini_IntSet(file, "Mкs", Months);
dini_IntSet(file, "Ano", Years);
GetPlayerName(playerid, name, sizeof(name));}
Kick(playa);
return 1;}
Obs: Eu tentei colocar Ban(playerid); mais n funcionou quando eu coloco isso ele da ban no admin tb.
Re: [AJUDA] Ban por ip tb -
GuikBretas - 09.02.2011
Bane por Rcon
Re: [AJUDA] Ban por ip tb -
Strong_ADM - 09.02.2011
muda o Kick(playa); para Ban(playa); ele jб vai banir o IP do jogador com o Ban, sу que seguinte ele nгo vai banir o IP por бrea entгo continua a msm coisa...
Re: [AJUDA] Ban por ip tb -
junioor - 09.02.2011
Obrigado mais eu gostaria de adptar em um so comando para dar ban no nome e no ip vlw pela ajuda mais n й isso que eu procuro.
Re: [AJUDA] Ban por ip tb -
Strong_ADM - 09.02.2011
Nгo sei se existe como banir totalmente o IP da pessoa, mais boa sorte, jб ouvi falar que da para fazer isso mas nunca vi isso...
Re: [AJUDA] Ban por ip tb -
junioor - 09.02.2011
Й claro que ban por ip existe!
Oque normalmente os jogadores fazem й reniciar o modem para conseguir outro ip assim burla o ban por isso eu gostaria de adapta-lo a banir por nick e ip assim й melhor mais valeu pela ajuda estarei testando o ban(playa);
Re: [AJUDA] Ban por ip tb -
[Ips]Guh - 09.02.2011
da simm..usando
https://sampwiki.blast.hk/wiki/GetPlayerIp
Re: [AJUDA] Ban por ip tb -
Strong_ADM - 09.02.2011
getplayerip sу vai pegar o IP random da pessoa, nгo o IP fixo.
Re: [AJUDA] Ban por ip tb -
KiiS_TRUEPhone - 09.02.2011
Olб amigo , este comando retirei de meu Gamemode , e sim ele bani o IP do player , nгo somente o nick mais sim o IP , se tiver erros , poste aqui obrigado. !
Код:
if(strcmp(cmd, "/ban", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /ban [playerid/ParteDoNome] [motivo]");
return 1;
}
giveplayerid = ReturnUser(tmp);
new nome[24];
GetPlayerName(playerid, nome, sizeof nome);
if(PlayerInfo[playerid][pAdmin] >= 1)
{
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
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: /ban [playerid/ParteDoNome] [motivo]");
return 1;
}
new year, month,day;
getdate(year, month, day);
if(PlayerInfo[playerid][pAdmin] >= 1)
{
format(string, sizeof(string), "|ADMIN|: %s foi banido por %s |Motivo: %s (%d-%d-%d)|", giveplayer, sendername, (result),month,day,year);
BanLog(string);
format(string, sizeof(string), "|ADMIN|: %s foi banido por %s |Motivo: %s|", giveplayer, sendername, (result));
SendClientMessageToAll(LARANJA1, string);
}
Ban(giveplayerid);
return 1;
}
}//not connected
}
else
{
format(string, sizeof(string), " %d nгo й um player ativo.", giveplayerid);
SendClientMessage(playerid, COLOR_GRAD1, string);
}
}
return 1;
}
Re: [AJUDA] Ban por ip tb -
Strong_ADM - 09.02.2011
cara ele quer um comando que de ban no IP fixo da pessoa.