[pedido] Repar - 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] Repar (
/showthread.php?tid=349431)
[pedido] Repar -
goku114 - 09.06.2012
oi gente se alguem esta disposto a me passar um cod que
quando bata o carro ele se conserta sem comando
quem ajudar +rep
Re: [pedido] Repar -
Bruno Pereira - 09.06.2012
Coloca no fim do GM:
PHP код:
public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
SetVehicleHealth(vehicleid, 1000.0);
RepairVehicle(vehicleid);
return 1;
}
Re: [pedido] Repar -
zbt - 09.06.2012
pawn Код:
public OnVehicleDamageStatusUpdate(vehicleid,playerid)
return RepairVehicle(vehicleid);
Re: [pedido] Repar -
Vitor_Marfioso - 09.06.2012
Eu acho que se colocar assim:
pawn Код:
public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
SetVehicleHealth(vehicleid, 1000.0);
RepairVehicle(vehicleid);
return 1;
}
Ficaria melhor
Re: [pedido] Repar -
goku114 - 09.06.2012
Quote:
Originally Posted by Bruno Pereira
Coloca no fim do GM:
PHP код:
public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
SetVehicleHealth(vehicleid, 1000.0);
RepairVehicle(vehicleid);
return 1;
}
|
Quote:
Originally Posted by zbt
pawn Код:
public OnVehicleDamageStatusUpdate(vehicleid,playerid) return RepairVehicle(vehicleid);
|
os dois funciona mas tenho uma duvida quero que ele faзa isso so quando vai para o stunt01
que seria /stunt01
Re: [pedido] Repar -
zbt - 09.06.2012
pawn Код:
new bool: s[MAX_PLAYERS];
//quando for para o stunt0
s[playerid] = true;
public OnVehicleDamageStatusUpdate(vehicleid,playerid) {
if(s[playerid])
return RepairVehicle(vehicleid);
return true;
}
Re: [pedido] Repar -
goku114 - 09.06.2012
Quote:
Originally Posted by zbt
pawn Код:
new bool: s[MAX_PLAYERS];
//quando for para o stunt0 s[playerid] = true;
public OnVehicleDamageStatusUpdate(vehicleid,playerid) { if(s[playerid]) return RepairVehicle(vehicleid); return true; }
|
с funciono + vlw
ta reparando todos ainda
Re: [pedido] Repar -
zbt - 09.06.2012
Quote:
Originally Posted by goku114
с funciono + vlw
ta reparando todos ainda
|
Vocк certamente fez algo errado amigo.
Coloque s[playerid] = false; quando ele sair do stunt tambйm..
Re: [pedido] Repar -
goku114 - 09.06.2012
Quote:
Originally Posted by zbt
Vocк certamente fez algo errado amigo.
Coloque s[playerid] = false; quando ele sair do stunt tambйm..
|
Aonde eu coloco esse s?
Re: [pedido] Repar -
Vitor_Marfioso - 09.06.2012
Quando ele sair do Stunt, no caso se existir algum comando...