SA-MP Forums Archive
Car spawn - 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: Car spawn (/showthread.php?tid=557184)



Car spawn - FlavioCesar - 13.01.2015

Hola de nuevo, necesito ayuda con esto: hace tiempo me puse a hacer un menu de autos por dialogos, y bueno, cuando me toco hacer lo del primer spawn es un Skimmer (avion) y por mas que intente siempre aparece incompleto, quiero decir que se traba con la carretera y las ruedas del avion quedan en el asfalto , no se ven... en vista de eso no continue porque no sabia como hacer, hoy vi este tutorial: https://sampforum.blast.hk/showthread.php?tid=273055 y aproveche con ese codigo, pero me sigue poniendo el Skimmer mal, (no ocurre con autos y motos). necesito ayuda.

pawn Код:
new Float:x, Float:y, Float:z, Float:a;
                GetPlayerPos(playerid, x,y,z);
                GetPlayerFacingAngle(playerid, a);
                new vehicleid = CreateVehicle(460, x+5,y,z, a, -1, -1, -1);
                PutPlayerInVehicle(playerid, vehicleid, 0);



Respuesta: Car spawn - aoEXE - 13.01.2015

pawn Код:
new Float:x, Float:y, Float:z, Float:a;
                GetPlayerPos(playerid, x,y,z);
                GetPlayerFacingAngle(playerid, a);
                new vehicleid = CreateVehicle(460, x+5,y,z+5, a, -1, -1, -1);
                PutPlayerInVehicle(playerid, vehicleid, 0);
intenta asн


Respuesta: Car spawn - FlavioCesar - 13.01.2015

Gracias aoEXE