Hola ahora les pondre un tutorial de como crear un coche con un comando.
Es bastante simple para mi parecer
Nos situamos en public OnPlayerCommandText(playerid, cmdtext[]){
Y luego ponemos lo siguiente
if ( strcmp ( cmdtext, "/comando", true ) == 0 )
{
new "nombre sin comillas";
new Float: gppx, Float: gppy, Float: gppz, Float: gpfa;
GetPlayerPos ( playerid, gppx, gppy, gppz );
GetPlayerFacingAngle ( playerid, gpfa );
"nombre de la variable en new sin comillas" = CreateVehicle("id del coche sin comillas", gppx, gppy, gppz, gpfa, 0, 0, -66666);
PutPlayerInVehicle( playerid, moto, 0);
}
Azul: El comando
Amarillo: La variable que define al coche
Rojo: La variable que pusimos en new
Rojo Oscuro: El id del coche que queremos crear
Un ejemplo seria asi miren este es para crear una moto NRG-500
Spoiler:
if ( strcmp ( cmdtext, "/nrg", true ) == 0 )
{
new moto;
new Float: gppx, Float: gppy, Float: gppz, Float: gpfa;
GetPlayerPos ( playerid, gppx, gppy, gppz );
GetPlayerFacingAngle ( playerid, gpfa );
moto = CreateVehicle(522, gppx, gppy, gppz, gpfa, 0, 0, -66666);
PutPlayerInVehicle( playerid, moto, 0);
}
Saludos espero les sirva