04.03.2013, 18:26
Estou tentando por TextLabel nos Radares, mas sу aparece em um(alguns)
O que tem de errado?
O que tem de errado?
pawn Код:
SetupSpeedCamera(CamID, Float:x, Float:y, Float:z, Float:rot, MaxSpeed)
{
ACameras[CamID][CamX] = x;
ACameras[CamID][CamY] = y;
ACameras[CamID][CamZ] = z;
ACameras[CamID][CamAngle] = rot;
ACameras[CamID][CamSpeed] = MaxSpeed;
ACameras[CamID][CamObj1] = CreateObject(18880, x, y, z, 0.0, 0.0, rot);
ACameras[CamID][CamObj2] = CreateObject(18880, x, y, z, 0.0, 0.0, rot + 180.0);
new str [ 100 ] ; format ( str , sizeof ( str ) , "Radar \n Velocidade maxima: %i " , MaxSpeed ) ; Create3DTextLabel ( str , -1 , x , y , z , rot, 0, 1);
}