3dtextlabel problem bitte hilfe

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Abend habe folgendes problem und zwar
    ist es dies



    unter GameModeInt


    for(new h = 0; h < sizeof(CarInfo); h++)
    {
    housecars[0] = AddStaticVehicleEx(CarInfo[h][cVec], CarInfo[h][cAutox], CarInfo[h][cAutoy], CarInfo[h][cAutoz], CarInfo[h][cAutoza], CarInfo[h][cVcol1], CarInfo[h][cVcol2], 60000);
    }
    new lastring[256];
    format(lastring, sizeof(lastring), "LS-%d",CarInfo[housecars[0]][ccarnummer]);
    housecar[housecars[0]] = Create3DTextLabel(lastring,0xB3FF00FF,0.0,0.0,0.0,40.0,0); // Erstellt textlabel für das 1. police car deshalb die [0] das zweite wäre [1] etc.
    Attach3DTextLabelToVehicle(housecar[housecars[0]], housecars[0], 0.0, 0.0, 0.40);


    wenn das so drin ist erscheinen meine auto´s nicht mehr und 3dlabel auch nicht


    aber wenns so drin ist dann gehts


    for(new h = 0; h < sizeof(CarInfo); h++)
    {
    housecars[0] = AddStaticVehicleEx(CarInfo[h][cVec], CarInfo[h][cAutox], CarInfo[h][cAutoy], CarInfo[h][cAutoz], CarInfo[h][cAutoza], CarInfo[h][cVcol1], CarInfo[h][cVcol2], 60000);
    }
    new lastring[256];
    format(lastring, sizeof(lastring), "LS-5408",);
    housecar[housecars[0]] = Create3DTextLabel(lastring,0xB3FF00FF,0.0,0.0,0.0,40.0,0); // Erstellt textlabel für das 1. police car deshalb die [0] das zweite wäre [1] etc.
    Attach3DTextLabelToVehicle(housecar[housecars[0]], housecars[0], 0.0, 0.0, 0.40);



    bitte brauche hilfe

  • nein wollte ja das das so geht


    for(new h = 0; h < sizeof(CarInfo); h++)
    {
    housecars[0] = AddStaticVehicleEx(CarInfo[h][cVec], CarInfo[h][cAutox], CarInfo[h][cAutoy], CarInfo[h][cAutoz], CarInfo[h][cAutoza], CarInfo[h][cVcol1], CarInfo[h][cVcol2], 60000);
    }
    new lastring[256];
    format(lastring, sizeof(lastring), "LS-%d",CarInfo[housecars[0]][ccarnummer]);
    housecar[housecars[0]] = Create3DTextLabel(lastring,0xB3FF00FF,0.0,0.0,0.0,40.0,0); // Erstellt textlabel für das 1. police car deshalb die [0] das zweite wäre [1] etc.
    Attach3DTextLabelToVehicle(housecar[housecars[0]], housecars[0], 0.0, 0.0, 0.40);



    weil jedes auto ne andere nummer in der datei hat und das sie da auch zu sehen ist und diese nummer ist mit CarInfo[housecars[0]][ccarnummer] in der datei gespeichert


    aber wenn ichs so reinmache denn hab ich keine cars mehr

  • Wenn du schon eine Schleife benutzt dann sollte man diese auch überall benutzen...
    bringt nähmlich wenig wenn du über 30 mal das selbe auto erstellst :D

    //bin mir nicht sicher obs so funzt
    new lastring[250][256];
    for(new h = 0; h < sizeof(CarInfo); h++)
    {
    housecars[h] = AddStaticVehicleEx(CarInfo[h][cVec], CarInfo[h][cAutox], CarInfo[h][cAutoy], CarInfo[h][cAutoz], CarInfo[h][cAutoza], CarInfo[h][cVcol1], CarInfo[h][cVcol2], 60000);
    format(lastring[h], sizeof(lastring[h]), "LS-%d",CarInfo[housecars[h]][ccarnummer]);
    housecar[housecars[h]] = Create3DTextLabel(lastring[h],0xB3FF00FF,0.0,0.0,0.0,40.0,0); // Erstellt textlabel für das 1. police car deshalb die [0] das zweite wäre [1] etc.
    Attach3DTextLabelToVehicle(housecar[housecars[h]], housecars[h], 0.0, 0.0, 0.40);
    }

  • bekomm jetzt in der zeile


    format(lastring[h], sizeof(lastring[h]), "LS-%d",CarInfo[housecars[h]][ccarnummer]);


    diese errors
    D:\Dokumente und Einstellungen\Oli\Desktop\Sa-ProjectV1.0.pwn(376) : error 001: expected token: "]", but found "-identifier-"
    D:\Dokumente und Einstellungen\Oli\Desktop\Sa-ProjectV1.0.pwn(376) : warning 215: expression has no effect
    D:\Dokumente und Einstellungen\Oli\Desktop\Sa-ProjectV1.0.pwn(376) : error 001: expected token: ";", but found "]"
    D:\Dokumente und Einstellungen\Oli\Desktop\Sa-ProjectV1.0.pwn(376) : error 029: invalid expression, assumed zero
    D:\Dokumente und Einstellungen\Oli\Desktop\Sa-ProjectV1.0.pwn(376) : fatal error 107: too many error messages on one line