02.10.2010, 22:46
Someone know some FS, or can help me or give me an exemple to how to create a plate for cars (no bikes, boats and helis)..
public OnGameModeInit()
{
new vehicle_id, Text3D:vehicle3Dtext;
//Creating TextLabel
vehicle3Dtext = Create3DTextLabel( "Example Text", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
//Creating the Vehicle
vehicle_id = CreateVehicle( 510, 0.0. 0.0, 15.0, 5, 0, 120 );
//Attaching Text Label To Vehicle
Attach3DTextLabelToVehicle( vehicle3Dtext, vehicle_id, 0.0, 0.0, 2.0);
}