05.05.2010, 20:25
pawn Код:
public OnVehicleSpawn(vehicleid)
{
if(IsAircraft(vehicleid))
{
new Text3D:vehtext;
vehtext = Create3DTextLabel("Text Goes Here", COLOR_GREEN, 0.0, 0.0, 0.0, 50.0, 0, 1 );
Attach3DTextLabelToVehicle(vehtext, vehicleid, 0.0, 0.0, 2.0);
}
return true;
}
Can anyone help me?