31.07.2013, 18:30
pawn Код:
public OnGameModeInit ( )
{
new Text3D:vehicle3Dtext[MAX_VEHICLES],vehicle_id;
vehicle_id = CreateVehicle( 510, 0.0. 0.0, 15.0, 5, 0, 120 ); // Coordenadas do carro civil '-'
vehicle3Dtext[ vehicle_id ] = Create3DTextLabel( "Veiculo civil", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
Attach3DTextLabelToVehicle( vehicle3Dtext[ vehicle_id ] , vehicle_id, 0.0, 0.0, 2.0);
return 1;
}