Detaljan opis problema: Ne pokazuje mi ovaj tekst
Dio skripte: /
new Text3D:VehicleLabel;
new Text3D:VehicleLabels; for(new c = 0; c < MAX_VEHICLES; c++)
{
new model;
GetVehicleName(c, model, sizeof(model));
if(IsAnOwnableCar(c))
{
if(CarInfo==0)
{
new stringauuuuu;
new Float:x,Float:y,Float:z; GetVehiclePos(c, x,y,z);
format(stringauuuuu,sizeof(stringauuuuu),"{F81414}Vozilo na prodaju\n Model: %s \n Cena: $%d \n /v buy da kupis!{FFFFFF}",model,CarInfo);
VehicleLabel = Create3DTextLabel(stringauuuuu, 0xFF0000CC, x, y, z, 20, 0, 1);
Attach3DTextLabelToVehicle(VehicleLabel,c,0,0,0);
}
else if(CarInfo == 1)
{
new stringauuuuuuu;
new Float:x,Float:y,Float:z; GetVehiclePos(c, x,y,z);
format(stringauuuuuuu,sizeof(stringauuuuuuu),"%s",CarInfo);
VehicleLabels = Create3DTextLabel(stringauuuuuuu, 0xC0C0C0C8, x, y, z, 20, 0, 1);
Attach3DTextLabelToVehicle(VehicleLabels,c,0,0,0);
}
}
}