sBizz 3D Textlabels werden nicht angezeigt

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
  • Hallo Leute,


    ich habe ein Problem mit meinen 3D Textlabels.
    Wenn ich den Server neustarten steht bei allen sBizzes "Nothing".
    Doch bei den den Bizzes werden sie sofort angezeigt.


    Hab hier mal nen Code der scheinbar das ganze bei Serverstart ausführt.
    Weiß net ob er falsch ist oder es ne andere lösung für das Problem gibt.


    for(new h = 0; h < sizeof(BizzInfo); h++)
    {
    new string3[128];
    if(BizzInfo[h][bOwned] == 0)
    {
    format(string3, sizeof(string3), "Zum Verkauf\n Preis: %d $\nLevel: %d\n",BizzInfo[h][bBuyPrice], BizzInfo[h][bLevelNeeded]);
    BizzInfo[h][bLabelID] = Create3DTextLabel(string3,COLOR_TUTBLAU,BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]+1,22.0,0,0);
    AddStaticPickup(1272, 2, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]);
    pickups++;
    }
    if(BizzInfo[h][bOwned] == 1)
    {
    format(string3, sizeof(string3), "Besitzer: %s\nBizteilhaber: %s\nLevel: %d\nEintrittspreis: %d\nProduktpreis: %d $\nBenötigte Produkte: %d",BizzInfo[h][bOwner], BizzInfo[h][bExtortion], BizzInfo[h][bLevelNeeded], BizzInfo[h][bEntranceCost], BizzInfo[h][bPriceProd], BizzInfo[h][bMaxProducts] - BizzInfo[h][bProducts]);
    Create3DTextLabel(string3,COLOR_TUTBLAU,BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]+1,22.0,0,0);
    AddStaticPickup(1239, 2, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]);
    pickups++;
    }
    }
    for(new h = 0; h < sizeof(SBizzInfo); h++)
    {
    new str[128];
    if(SBizzInfo[h][sbOwned] == 0)
    {
    format(str, sizeof(str), "Zum Verkauf\n Preis: %d $\nLevel: %d\n",SBizzInfo[h][sbBuyPrice], SBizzInfo[h][sbLevelNeeded]);
    SBizzInfo[h][sbLabelID] = Create3DTextLabel(string,COLOR_TUTBLAU,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,22.0,0,0);
    AddStaticPickup(1272, 2, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]);
    pickups++;
    }
    if(SBizzInfo[h][sbOwned] == 1)
    {
    format(str, sizeof(str), "Besitzer: %s\nBizteilhaber: %s\nLevel: %d\nEintrittspreis: %d\nProduktpreis: %d $\nBenötigte Produkte: %d",SBizzInfo[h][sbOwner], SBizzInfo[h][sbExtortion], SBizzInfo[h][sbLevelNeeded], SBizzInfo[h][sbEntranceCost], SBizzInfo[h][sbPriceProd], SBizzInfo[h][sbMaxProducts] - SBizzInfo[h][sbProducts]);
    SBizzInfo[h][sbLabelID] = Create3DTextLabel(string,COLOR_TUTBLAU,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,22.0,0,0);
    AddStaticPickup(1239, 2, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]);
    pickups++;
    }
    }



    Hoffe jemand kann helfen.


    MFG


    Nov


    Einmal editiert, zuletzt von Alcatraz_Parker () aus folgendem Grund: Textgeändert

  • ahatte das gleich prob
    ich glaube du musst sie einfach updaten beim start
    und immer wenn du was dran machst
    das alte löschen und ein neues oder halt updaten

    DDoS = Die dollsten ollen Sprüche :P


    Zitat

    Ich möchte hier den Lars gerne sehr loben.
    Er ist ein sehr netter kerl.
    Er hat es mir sofort gemacht..


    Zitat von Nachrichtenverlauf


    ;(


  • so sieht das in meiner alten ongamemodenit aus
    for(new h = 0; h < sizeof(SBizzInfo); h++)
    {
    new string3[130];
    if(SBizzInfo[h][sbOwned] == 0)
    {
    format(string3, sizeof(string3), "Zum Verkauf\n Preis: %d $\nLevel: %d\n",SBizzInfo[h][sbBuyPrice], SBizzInfo[h][sbLevelNeeded]);
    SBizzInfo[h][sbLabelID] = Create3DTextLabel(string3,COLOR_TUTBLAU,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,22.0,0,0);
    AddStaticPickup(1273, 2, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]);
    pickups++;
    }
    if(SBizzInfo[h][sbOwned] == 1)
    {
    format(string3, sizeof(string3), "Besitzer: %s\nBizteilhaber: %s\nLevel: %d\nEintrittspreis: %d\nProduktpreis: %d $\nBenötigte Produkte: %d",SBizzInfo[h][sbOwner], SBizzInfo[h][sbExtortion], SBizzInfo[h][sbLevelNeeded], SBizzInfo[h][sbEntranceCost], SBizzInfo[h][sbPriceProd], SBizzInfo[h][sbMaxProducts] - SBizzInfo[h][sbProducts]);
    SBizzInfo[h][sbLabelID] = Create3DTextLabel(string3,COLOR_TUTBLAU,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,22.0,0,0);
    AddStaticPickup(1272, 2, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]);
    pickups++;
    }
    }


    //EDIT das habe ich bei jedem befehl der an i einem sbiz was ändert drangehangen
    Update3DTextLabelText(SBizzInfo[b][sbLabelID], COLOR_TUTBLAU, str);

    DDoS = Die dollsten ollen Sprüche :P


    Zitat

    Ich möchte hier den Lars gerne sehr loben.
    Er ist ein sehr netter kerl.
    Er hat es mir sofort gemacht..


    Zitat von Nachrichtenverlauf


    ;(