10.06.2011, 13:10
Hi guys,i've added a textdraw to show at Hydra,Rhino,Hunter,Seasparrow a textlabel "War Vehicle",but this doesn't show.
I got no errors while compiling,what's wrong?
pawn Код:
for ( new i; i < MAX_VEHICLES; i ++ )
{
switch ( GetVehicleModel( i ) )
{
case 432,447,520,425:
{
new vehicle_id;
new Text3D: vehicle3Dtext;
vehicle3Dtext = Create3DTextLabel( "War Vehicle", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
Attach3DTextLabelToVehicle( vehicle3Dtext, vehicle_id, 0.0, 0.0, 2.0);
}
}
}