SA-MP Forums Archive
[duda] CMD Spawn moto - 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: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: [duda] CMD Spawn moto (/showthread.php?tid=598274)



[duda] CMD Spawn moto - lucas95akd - 10.01.2016

Buenaas que tal, estoy queriendo hacer un comando que cuando yo escriba /moto, spawnee una moto con el jugador adentro de la moto.
Hasta crear la moto y que spawnee donde esta el jugador me salio bien, pero no puedo hacer que aparezca el jugador adentro. Este es mi codigo:
Код:
CMD:moto(playerid, params[])
{
new Float:x,Float:y,Float:z,Float:Angle;
new vehiculoid;
vehiculoid = CreateVehicle;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid,Angle);
CreateVehicle(522, x, y, z, Angle, -1, -1, -1);
PutPlayerInVehicle(playerid,vehiculoid,0);
}
Graciaas, saludos.


Re: [duda] CMD Spawn moto - Unrea1 - 10.01.2016

Код:
CMD:moto(playerid, params[])
{
new Float:x,Float:y,Float:z,Float:Angle;
new vehiculoid;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid,Angle);
vehiculoid = CreateVehicle(522, x, y, z, Angle, -1, -1, -1);
PutPlayerInVehicle(playerid,vehiculoid,0);
}



Re: [duda] CMD Spawn moto - lucas95akd - 10.01.2016

Graciaas!! funciona perfectoo