21.06.2015, 13:27
just example
pawn Код:
CMD:v(playerid, params[])
{
new Car, Float:x, Float:y, Float:z, Float:a;
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, a);
Car = CreateVehicle(411, x, y, z, a, -1, -1, -1);
PutPlayerInVehicle(playerid, (Car), 0);
return 1;
}