SA-MP Forums Archive
[Pedido] Comando teleporte com carro - 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] Comando teleporte com carro (/showthread.php?tid=450319)



Comando teleporte com carro - CrazYou - 12.07.2013

Como faz pra quando o player da teleporte para algum lugar ele nascer com um carro tipo carro monstro

SetPlayerVehicle?


Re: Comando teleporte com carro - WLSF - 12.07.2013

CreateVehicle
PutPlayerInVehicle


Re: Comando teleporte com carro - Lуs - 12.07.2013

Teleporte o jogador, em seguida crie o veнculo, e depois mande o jogador para dentro do veнculo.


Re: Comando teleporte com carro - CrazYou - 12.07.2013

Quote:
Originally Posted by Lуs
Посмотреть сообщение
Quote:

public OnPlayerCommandText(playerid,cmdtext[])
{
if (strcmp(cmdtext,"/sumo",true)==0)
{
CreateVehicle(556, 1448.9720,-1063.6511,213.3828, 82.2873, 1, 1, 20);
PutPlayerInVehicle(playerid, vehicleid, 0);
SendClientMessage(playerid,0x7CFC00,"| INFO | Vocк foi para o sumo entre carros!");
SetPlayerPos(playerid,1448.9720,-1063.6511,213.382;
}
return 1;
}

Quando o player teleporta cria o carro mas ele nгo entra no carro


Re: Comando teleporte com carro - WLSF - 12.07.2013

pawn Код:
new i = CreateVehicle(...);
PutPlayerInVehicle(playerid, i, 0);
Tem que criar uma var de auxнlio pra identificar o ID do veнculo.


Re: Comando teleporte com carro - CrazYou - 12.07.2013

Quote:
Originally Posted by Willian_Luigi
Посмотреть сообщение
pawn Код:
new i = CreateVehicle(...);
PutPlayerInVehicle(playerid, i, 0);
Tem que criar uma var de auxнlio pra identificar o ID do veнculo.
valeu