Die Godfather Stats in Dialoge Boxen packen

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 Forum


    Ich habe heute wieder eine Frage an euch ich möchte die Godfather Stats in eine bzw mehrere MSG Dialog Boxen stecken hier mein Code


    new coordsstring[256];
    format(coordsstring, sizeof(coordsstring),"Stats von %s",name);
    format(coordsstring, sizeof(coordsstring), "Level:[%d] Geschlecht:[%s] Alter:[%d] Geboren in/im/bei:[%s] Spawn Leben:[%.1f] Geld:[$%d] Bank:[$%d] Telefon Nummer:[%d]", level,atext,age,otext,shealth+50, cash, account, pnumber);
    format(coordsstring, sizeof(coordsstring), "VipRank:[%s] MarriedTo:[%s] Gespielte Stunden:[%d] LottoNr:[%d] Job:[%s]", drank,married,ptime,lotto,jtext);
    format(coordsstring, sizeof(coordsstring), "Fische:[%d] Große Fische:[%d] Verbrechen:[%d] Gesamtzeit deiner Arrest Zeit:[%d] Wanted´s Tode:[%d]", fishes,bigfish,crimes,arrests,warrests );
    format(coordsstring, sizeof(coordsstring), "Getötet:[%d] Gestorben:[%d] Nästes Level kostet:[$%d] RespektPunkte:[%d/%d] Wanted Level:[%d] Family:[%s]",kills,deaths,costlevel,exp,expamount,wanted,f2text);
    format(coordsstring, sizeof(coordsstring), "Drogen:[%d] Materials:[%d] Team:[%s] Krankheit:[%s] Organisation:[%s] Rank:[%s]",drugs,mats,ttext,dtext,ftext,rtext);
    ShowPlayerDialog(playerid, Stats, DIALOG_STYLE_MSGBOX , "Stats", coordsstring, "Schließen", "Schließen");


    Nicht verändert nur jetzt ist das Problem das ich ja nicht alle Sachen in eine MSGBOX packen kann sondern es gerne in 2 aufteilen möchte das habe ich auch schon gemacht nur ich weis nicht wie ich es dann mit dem Button machen sollte

  • dazu kommt der string(variable) muss Global nicht local definiert sein

  • if(strcmp("/Status",cmdtext, true, 10) == 0)
    {
    new coordsstring[256];
    new coordsstring2[256];
    new coordsstring3[256];
    new coordsstring4[256];
    new coordsstring5[256];
    new coordsstring6[256];
    new insgesamtstring[256];
    format(coordsstring, sizeof(coordsstring),"Stats von %s",name);
    format(coordsstring2, sizeof(coordsstring2), "Level:[%d] Geschlecht:[%s] Alter:[%d] Geboren in/im/bei:[%s] Spawn Leben:[%.1f] Geld:[$%d] Bank:[$%d] Telefon Nummer:[%d]", level,atext,age,otext,shealth+50, cash, account, pnumber);
    format(coordsstring3, sizeof(coordsstring3), "VipRank:[%s] MarriedTo:[%s] Gespielte Stunden:[%d] LottoNr:[%d] Job:[%s]", drank,married,ptime,lotto,jtext);
    format(coordsstring4, sizeof(coordsstring4), "Fische:[%d] Große Fische:[%d] Verbrechen:[%d] Gesamtzeit deiner Arrest Zeit:[%d] Wanted´s Tode:[%d]", fishes,bigfish,crimes,arrests,warrests );
    format(coordsstring5, sizeof(coordsstring5), "Getötet:[%d] Gestorben:[%d] Nästes Level kostet:[$%d] RespektPunkte:[%d/%d] Wanted Level:[%d] Family:[%s]",kills,deaths,costlevel,exp,expamount,wanted,f2text);
    format(coordsstring6, sizeof(coordsstring6), "Drogen:[%d] Materials:[%d] Team:[%s] Krankheit:[%s] Organisation:[%s] Rank:[%s]",drugs,mats,ttext,dtext,ftext,rtext);
    format(insgesamtstring,sizeof(insgesamtstring),"%s\n%s\n%s\n%s\n%s\n%s",coordsstring,coordsstring2,coordsstring3,coordsstring4,coordsstring5,coordsstring6);
    ShowPlayerDialog(playerid, Stats, DIALOG_STYLE_MSGBOX , "Stats", insgesamtstring, "Schließen", "Schließen");
    return 1;
    }



    Bitte sehr.