[AJUDA] Comando /flipveh - 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] Comando /flipveh (
/showthread.php?tid=324948)
[AJUDA] Comando /flipveh -
Skun Fly - 11.03.2012
Oi, eu jб usei search e os comandos de flip que eu encontro tгo sempre dando erro.
Por isso eu venho pedir se alguem poderб fazer um comando /flipveh em
dcmd.
Quem ajuda
+resp
PS: Para quem nгo sabe que comando eu to falando, й um comando para virar o carro, para a sua posiзгo normal.
Re: [AJUDA] Comando /flipveh -
zbt - 11.03.2012
pawn Код:
dcmd_flipveh ( playerid ) {
if ( !IsPlayerInAnyVehicle ( playerid ) )
return false;
new Float:pos [ 3 ] , v = GetPlayerVehicleID ( playerid ) ;
GetPlayerPos ( playerid , pos [ 0 ] , pos [ 1 ] , pos [ 2 ] ) ;
SetVehiclePos(v, pos [ 0 ] , pos [ 1 ] , pos [ 2 ] ) ;
SetVehicleZAngle ( v , 0 ) ;
return true;
}
Re: [AJUDA] Comando /flipveh -
Cristhian - 11.03.2012
pawn Код:
if(strcmp(cmdtext, "/flip", true) == 0)
{
new Float:X, Float:Y, Float:Z;
GetVehiclePos(GetPlayerVehicleID(playerid), X, Y, Z);
SetVehiclePos(GetPlayerVehicleID(playerid), X, Y, Z);
return 1;
}
Re: [AJUDA] Comando /flipveh -
Skun Fly - 11.03.2012
Quote:
Originally Posted by zbt
pawn Код:
dcmd_flipveh ( playerid ) { if ( !IsPlayerInAnyVehicle ( playerid ) ) return false; new Float:pos [ 3 ] , v = GetPlayerVehicleID ( playerid ) ; GetPlayerPos ( playerid , pos [ 0 ] , pos [ 1 ] , pos [ 2 ] ) ; SetVehiclePos(v, pos [ 0 ] , pos [ 1 ] , pos [ 2 ] ) ; SetVehicleZAngle ( v , 0 ) ; return true; }
|
Obrigadгo cara! + resp
Cristhian eu pedi o comando eu dcmd!