06.07.2016, 07:08
Hello!
You must use your police car, like this:
You must use your police car, like this:
PHP код:
new Text3D:vehicle3Dtext[MAX_VEHICLES],LSPDVehicles[ 1 ];;
// Creating the TextLabel for later use
public OnGameModeInit ( )
{
LSPDVehicles[0] = AddStaticVehicleEx(596, 1602.5122, -1680.3663, 5.4630, 90.1200, 0, 1, FACTION_RESPAWN);
vehicle3Dtext[ LSPDVehicles[0] ] = Create3DTextLabel( "1-ADAM-2", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
Attach3DTextLabelToVehicle( vehicle3Dtext[ LSPDVehicles[0] ] , LSPDVehicles[0], 0.0, 0.0, 2.0);
}
public OnGameModeExit ( )
{
Delete3DTextLabel( vehicle3Dtext[ LSPDVehicles[0] ] );
return true;
}