Wieso sehe ich InGame kein Pickup

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 Breadfish Freunde,
    Ich habe ein Problem: Ich sehe mein Pickup nicht :/ Hier ist der Code wo er das erstellen sollte und das 3DTextLabel sehe ich auch nicht:


    for(new b = 1;b < MAX_BIZZ; b++)
    {
    new string[128];
    LoadBizz(b);
    if(BizzInfo[b][bOwned] == 0)
    {
    BizzInfo[b][bPickup] = CreatePickup(1272, 1, BizzInfo[b][bEnterX], BizzInfo[b][bEnterY], BizzInfo[b][bEnterZ]);
    print("Pickup erstellt");
    format(string, sizeof(string), "Zum Verkauf\n Preis: %d $\nLevel: %d\n",BizzInfo[b][bPreis], BizzInfo[b][bLevelNeeded]);
    BizzInfo[b][bLabelID] = Create3DTextLabel(string,COLOR_LIGHTBLUE,BizzInfo[b][bEnterX], BizzInfo[b][bEnterY], BizzInfo[b][bEnterZ]+1,22.0,0,0);
    }
    if(BizzInfo[b][bOwned] == 1)
    {
    BizzInfo[b][bPickup] = CreatePickup(1239, 1, BizzInfo[b][bEnterX], BizzInfo[b][bEnterY], BizzInfo[b][bEnterZ]);
    print("Pickup erstellt");
    format(string, sizeof(string), "Besitzer: %s\nBizteilhaber: %s\nLevel: %d\nEintrittspreis: %d\nProduktpreis: %d $\nBenötigte Produkte: %d",BizzInfo[b][bOwner], BizzInfo[b][bExtortion], BizzInfo[b][bLevelNeeded], BizzInfo[b][bEntranceCost], BizzInfo[b][bPriceProd], BizzInfo[b][bMaxProds] - BizzInfo[b][bProds]);
    BizzInfo[b][bLabelID] = Create3DTextLabel(string,COLOR_LIGHTBLUE,BizzInfo[b][bEnterX], BizzInfo[b][bEnterY], BizzInfo[b][bEnterZ]+1,22.0,0,0);
    }
    }