3D text.

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
  • MOin,


    aso ich habe nun Das 3D text an den Häusern steht hinbekommen Jedoch... ist das in einer reiche Kann man irgend wie eine NEue Reihe erstellen aso das die 3D Text untereinnadeer sind?


    CODE


    if(HouseInfo[h][hRentabil] == 0)
    {
    format(string, sizeof(string), "Besitzer %s Level: %d ",HouseInfo[h][hOwner],HouseInfo[h][hLevel]);
    }
    else
    {

    format(string, sizeof(string), "Besitzer %s Level: %d Miete: %d$ Tippe /rentroom um dich zu mieten",HouseInfo[h][hOwner],HouseInfo[h][hLevel],HouseInfo[h][hRent]);
    }
    Create3DTextLabel(string,0x2800FFFF,HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]+0.75,20.0,0,1);
    return 1;


    mfg Gabba
    Danke im Vorraus

  • probier das mal:


    if(HouseInfo[h][hRentabil] == 0)
    {
    format(string, sizeof(string), "Besitzer %s Level: %d ",HouseInfo[h][hOwner],HouseInfo[h][hLevel]);
    }
    else
    {


    format(string, sizeof(string), "Besitzer %s \nLevel: %d \nMiete: %d$ \nTippe /rentroom um dich zu mieten",HouseInfo[h][hOwner],HouseInfo[h][hLevel],HouseInfo[h][hRent]);
    }
    Create3DTextLabel(string,0x2800FFFF,HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]+0.75,20.0,0,1);
    return 1;


    das \n dteht für neue zeile