Danificar carro desocupado! -
ViNi2001 - 20.01.2016
Precisava saber como detectar um player atirando no carro para tirar vida deste carro, se alguйm puder ajudar
E tambйm, sу que mais difнcil, detectar o assassino do player que estava no veiculo e morreu com a explosгo do veнculo causada pelo assassino.
Re: Danificar carro desocupado! -
Ever_SH - 20.01.2016
tenta usar OnPlayerWeaponShot para tirar vida do carro ao tomar tiro sem ninguйm dentro.
https://sampwiki.blast.hk/wiki/OnPlayerWeaponShot
Re: Danificar carro desocupado! -
ViNi2001 - 20.01.2016
Ah, boa, nгo sabia que dava pra detectar se atirou em veнculo! Vlw!
Re: Danificar carro desocupado! -
Coringa_Vilao - 20.01.2016
igual o amigo acima falou , use:
https://sampwiki.blast.hk/wiki/OnPlayerWeaponShot , uma base ficara assim !
PHP код:
public OnPlayerWeaponShot( playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ )
{
if(hittype = BULLET_HIT_TYPE_VEHICLE) // Ao acertar qualquer veiculo com tiro
{
SetVehicleHealth(hitid, 7); // ele irб comeзar a pegar FOGO.
}
return 1;
}
Re: Danificar carro desocupado! -
Coringa_Vilao - 20.01.2016
igual o amigo acima falou , use:
https://sampwiki.blast.hk/wiki/OnPlayerWeaponShot , uma base ficara assim !
PHP код:
public OnPlayerWeaponShot( playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ )
{
if(hittype = BULLET_HIT_TYPE_VEHICLE) // Ao acertar qualquer veiculo com tiro
{
SetVehicleHealth(hitid, 7); // ele irб comeзar a pegar FOGO.
}
return 1;
}
Re: Danificar carro desocupado! -
WKhalifa - 20.01.2016
Quote:
Originally Posted by Coringa_Vilao
igual o amigo acima falou , use: https://sampwiki.blast.hk/wiki/OnPlayerWeaponShot , uma base ficara assim !
PHP код:
public OnPlayerWeaponShot( playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ )
{
if(hittype = BULLET_HIT_TYPE_VEHICLE) // Ao acertar qualquer veiculo com tiro
{
SetVehicleHealth(hitid, 7); // ele irб comeзar a pegar FOGO.
}
return 1;
}
|
Tem como fazer o veiculo ficar pegando fogo, tipo a vida do veiculo parar em 7 ?
Re: Danificar carro desocupado! -
Coringa_Vilao - 20.01.2016
Quote:
Originally Posted by WKhalifa
Tem como fazer o veiculo ficar pegando fogo, tipo a vida do veiculo parar em 7 ?
|
vocк testou a base acima ?
Re: Danificar carro desocupado! -
WKhalifa - 20.01.2016
Erros
Код:
C:\Los Angeles CRP\gamemodes\LA.pwn(773) : warning 235: public function lacks forward declaration (symbol "OnPlayerWeaponShot")
C:\Los Angeles CRP\gamemodes\LA.pwn(775) : warning 211: possibly unintended assignment
C:\Los Angeles CRP\gamemodes\LA.pwn(775) : error 017: undefined symbol "BULLET_HIT_TYPE_VEHICLE"
Re: Danificar carro desocupado! -
Coringa_Vilao - 20.01.2016
includes atualizadas ?
Re: Danificar carro desocupado! -
WKhalifa - 20.01.2016
ARRUMADO
Carro feiz Kabum