[Ajuda] /Destruirid - 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: [Ajuda] /Destruirid (
/showthread.php?tid=379701)
/Destruirid -
Wendell - 22.09.2012
Eu crio um veнculo e Quando eu digito /destruirid , diz que sу pode destruir veiculos criados , ajuda ae = +rep...
Re: /Destruirid -
dimmy_ - 22.09.2012
Posta o comando?
Re: /Destruirid -
-Don Corleone - 22.09.2012
Poste seu comando para facilitar nosso trabalho
Re: /Destruirid -
FeelLikeASir_ - 22.09.2012
Retire a proibiзгo.
Re: /Destruirid -
Wendell - 22.09.2012
Код:
if(!strcmp("/destruirid", cmdtext, true))
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] < 3)
{
SendClientMessage(playerid, COLOR_GRAD1, " Vocк nгo estб autorizado a usar este comando !");
return 1;
}
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 1;
}
new counter = 0;
new result;
new plyName[MAX_PLAYER_NAME];
GetPlayerName(playerid, plyName, MAX_PLAYER_NAME);
for(new i; i != MAX_VEHICLES; i++)
{
new dist = ChecarveiculoBMG(5, playerid, i);
if(dist)
{
result = i;
counter++;
}
}
switch(counter)
{
case 0:
{
SendClientMessage(playerid, COLOR_GREY, " Nгo hб nenhum carro nesse raio!");
}
case 1:
{
if(result < CAR_AMOUNT)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк sу pode destruir veнculos criados");
return 1;
}
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
DestroyVehicle(result);
format(string, sizeof(string), "Vocк destruiu o veнculo ID:[%d]", result);
SendClientMessage(playerid, COLOR_GREY, string);
if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
{
format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi destruido Por: Chuck_Norris", result);
ABroadCast(COLOR_YELLOW,string,1);
}
else
{
format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi destruido Por: %s", result, name);
ABroadCast(COLOR_YELLOW,string,1);
}
}
default:
{
SendClientMessage(playerid, COLOR_GREY, " Foram encontrados mais de um carro nesse raio");
}
}
}
return 1;
}
Re: /Destruirid -
-Don Corleone - 22.09.2012
Substitua o comando por este:
pawn Код:
if(!strcmp("/destruirid", cmdtext, true))
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] < 3)
{
SendClientMessage(playerid, COLOR_GRAD1, " Vocк nгo estб autorizado a usar este comando !");
return 1;
}
if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 1;
}
new counter = 0;
new result;
new plyName[MAX_PLAYER_NAME];
GetPlayerName(playerid, plyName, MAX_PLAYER_NAME);
for(new i; i != MAX_VEHICLES; i++)
{
new dist = ChecarveiculoBMG(5, playerid, i);
if(dist)
{
result = i;
counter++;
}
}
switch(counter)
{
case 0:
{
SendClientMessage(playerid, COLOR_GREY, " Nгo hб nenhum carro nesse raio!");
}
case 1:
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
DestroyVehicle(result);
format(string, sizeof(string), "Vocк destruiu o veнculo ID:[%d]", result);
SendClientMessage(playerid, COLOR_GREY, string);
if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
{
format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi destruido Por: Chuck_Norris", result);
ABroadCast(COLOR_YELLOW,string,1);
}
else
{
format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi destruido Por: %s", result, name);
ABroadCast(COLOR_YELLOW,string,1);
}
}
default:
{
SendClientMessage(playerid, COLOR_GREY, " Foram encontrados mais de um carro nesse raio");
}
}
}
return 1;
}
Re: /Destruirid -
Wendell - 22.09.2012
Obrigado , funcionou normalmente , + rep pra vc "
Re: /Destruirid -
-Don Corleone - 22.09.2012
d nada,quando precisar estarei aqui para ajudar!
att Don Corleone