SA-MP Forums Archive
[Pedido] Anti Car_Spawn. - 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: [Pedido] Anti Car_Spawn. (/showthread.php?tid=359447)



Anti Car_Spawn. - Mercurio - 14.07.2012

Alguйm poderia disponibilizar algum script que possa banir os players que praticam Car_Spawn.
Obs: Eu procurei no Fуrum pois a maioria nгo funciona, por ultimo eu tentei esse;


pawn Код:
new bibi[128];
    if((newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER) && oldstate != PLAYER_STATE_SPECTATING) {
        if((gettime() - GetPVarInt(playerid, "EnterVehicle")) < 2) {

            // antes de banir. Cheque se o jogador nгo usou algo com PutPlayerInVehicle em seu servidor (tipo flood de /criarcarros).
            new banido[MAX_PLAYER_NAME];
            dini_IntSet("Banidos.ini", banido, 1);
            SendClientMessage(playerid, 0x1E90FFAA, "Oi");
            Ban(playerid);
            format(bibi, sizeof(bibi), "Oi", nome(playerid));
            SendClientMessageToAll(0x1E90FFAA, bibi);
        }
        SetPVarInt(playerid, "registerOnState", 1);
        SetPVarInt(playerid, "EnterVehicle", gettime());
    }
E os mesmos continuam utilizando sem problema o Cleo para bagunзar os veнculos. Alguйm poderia me disponibilizar algum que funfe?

Sou grato, e obrigado pelo tempo de vocкs.



Re: Anti Car_Spawn. - zbt - 14.07.2012

http://forum.sa-mp.com/showpost.php?...&postcount=712


Re: Anti Car_Spawn. - Mercurio - 14.07.2012

Quote:
Originally Posted by zbt
Посмотреть сообщение
Pelo seu nнvel de rep, deve ser muito experiente... Poderia me dizer a diferenзa de
pawn Код:
Ban(playerid);
e
pawn Код:
BanEx(playerid);
?


Re: Anti Car_Spawn. - zbt - 14.07.2012

Ban convencional bane normalmente. BanEx vocк coloca o motivo do ban. Ex BanEx(4, "gay"); vai banir o id 4 pelo motivo gay, e serб imprimido no arquivo samp.ban "nome e motivo".


Re: Anti Car_Spawn. - Mercurio - 14.07.2012

Quote:
Originally Posted by zbt
Посмотреть сообщение
Ban convencional bane normalmente. BanEx vocк coloca o motivo do ban. Ex BanEx(4, "gay"); vai banir o id 4 pelo motivo gay, e serб imprimido no arquivo samp.ban "nome e motivo".
Hmm.
Obrigado, entгo seria mas vantajoso utilizar o BanEx?


Re: Anti Car_Spawn. - zbt - 14.07.2012

Vocк quem escolhe. :]


Re: Anti Car_Spawn. - Mercurio - 14.07.2012

Quote:
Originally Posted by zbt
Посмотреть сообщение
Vocк quem escolhe. :]
Obrigado e.e

Pela ajuda tbm '-'