Anti db para todos os veiculos menos o ID -
Wakayama - 27.06.2015
Bom como que faz para o comando anti db funcionar em todos veiculos menos no id 520,519,425,432 ?
" eu sei que vc coloca alguma coisa ali no meio do code com id do veiculo que vc nao quer que o anti db o acuse
so que esqueci alguem pode ajuda nisso rapidao obrigado
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(IsPlayerInAnyVehicle(killerid))
{
new string[100];
new acusado[MAX_PLAYER_NAME];
new vitima[MAX_PLAYER_NAME];
GetPlayerName(killerid, acusado, MAX_PLAYER_NAME);
GetPlayerName(playerid, vitima, MAX_PLAYER_NAME);
format(string, sizeof(string), "[ADB] %s Fez Drive-by em %s e serб Kikado Pelo ADM",acusado,vitima);
SendClientMessageToAll(0xCECE00AA, string);
}
return 1;
}
Re: Anti db para todos os veiculos menos o ID -
Monotox - 27.06.2015
Use o
GetPlayerVehicleModel para pegar o modelo (ID) do veнculo, e caso seja 520 nгo faзa nada, dк um else e cole a funзгo jб criada.
Re: Anti db para todos os veiculos menos o ID -
FallweN - 27.06.2015
Veja se isso funciona:
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
switch(GetVehicleModel(GetPlayerVehicleID(playerid))
{
case 520, 519, 425, 432: return 0;
default:
{
if(IsPlayerInAnyVehicle(killerid))
{
new string[100];
new acusado[MAX_PLAYER_NAME];
new vitima[MAX_PLAYER_NAME];
GetPlayerName(killerid, acusado, MAX_PLAYER_NAME);
GetPlayerName(playerid, vitima, MAX_PLAYER_NAME);
format(string, sizeof(string), "[ADB] %s Fez Drive-by em %s e serб Kikado Pelo ADM",acusado,vitima);
SendClientMessageToAll(0xCECE00AA, string);
}
}
}
return 1;
}
OBS: Nгo sei porque aqui tudo que eu faзo fica mal indentado
Re: Anti db para todos os veiculos menos o ID -
Lуs - 27.06.2015
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(IsPlayerInAnyVehicle(killerid))
{
new s = GetPlayerVehicleID(killerid);
new v = GetVehicleModel(s);
if(v == 520 || v == 519 || v == 425 || v == 432)
return 1;
new string[100];
new acusado[MAX_PLAYER_NAME];
new vitima[MAX_PLAYER_NAME];
GetPlayerName(killerid, acusado, MAX_PLAYER_NAME);
GetPlayerName(playerid, vitima, MAX_PLAYER_NAME);
format(string, sizeof(string), "[ADB] %s Fez Drive-by em %s e serб Kikado Pelo ADM",acusado,vitima);
SendClientMessageToAll(0xCECE00AA, string);
}
return 1;
}
Re: Anti db para todos os veiculos menos o ID -
Wakayama - 27.06.2015
Obrigado los funcino perfeitamente aqui +REP
Obrigado a todos que me ajudaram tambem