[PEDIDO] Comandos - 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] Comandos (
/showthread.php?tid=253898)
[PEDIDO] Comandos -
Gads - 08.05.2011
Galera queria os comandos /reparar e /flip . Jб tentei os do codigos uteis, mais nenhum prestou ;s
Re: [PEDIDO] Comandos -
Shadoww5 - 08.05.2011
Ja tentou usar o search ?
Re: [PEDIDO] Comandos -
Gads - 08.05.2011
Jб '
Re: [PEDIDO] Comandos -
Shadoww5 - 08.05.2011
Tem certeza ?
http://forum.sa-mp.com/showthread.ph...hlight=%2Fflip
Baixa este GM e pega os comandos que vocк quer.
La tem /repair e /flip.
Re: [PEDIDO] Comandos -
Transferencia - 08.05.2011
pawn Код:
if(strcmp(cmdtext,"/reparar",true) == 0)
{
new vehicleid = GetPlayerVehicleID(playerid);
SetVehicleHealth(vehicleid, 1000.0);
return 1;
}
+/- Isso nao?
Re: [PEDIDO] Comandos -
Gads - 08.05.2011
o Reparar jah achei so falta flip
Re: [PEDIDO] Comandos -
Shadoww5 - 08.05.2011
pawn Код:
if(strcmp(cmdtext,"/reparar",true) == 0)
{
RepairVehicle(GetPlayerVehicleID(playerid));
return 1;
}
//ACHO QUE SERIA MELHOR ASSIM POIS O REPAIRVEHICLE CONSERTA RODAS, PORTAS, ARRANHOES, VIDROS E AINDA A VIDA DO CARRO
Re: [PEDIDO] Comandos -
Shadoww5 - 08.05.2011
Caso vocк nгo ache o flip no GM que te passei, achei um nos codigos uteis:
Quote:
Originally Posted by JaltiPT
SIMPLES COMANDO DE VIRAR O CARRO
pawn Код:
if(strcmp(cmdtext, "/flip", true) == 0) { new Float:X, Float:Y, Float:Z; if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,0xFF0000AA,"Voce Nao Esta Em Um Veiculo");
SetCameraBehindPlayer(playerid); GetPlayerPos(playerid, X, Y, Z); SetVehiclePos(GetPlayerVehicleID(playerid), X, Y, Z); SetVehicleZAngle(GetPlayerVehicleID(playerid), 0); return 1; }
Obs:Eu nгo vi as paginas todas,se tiver um code parecido podem dizer.
|
Re: [PEDIDO] Comandos -
Gads - 08.05.2011
Vlw =)