DIALOG Problem? Unknown Command [/stats]

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 Liebe Leute mein DIALOG Läuft soweit ganz gut doch sobald ich ihn Erweitere und in Game /stats eingebe kommt Unknown COmmand



    Mein DIALOG Sollte so aussehen?




    Ich bin jetzt gerade mal bei der Hälfte und jetzt gehts halt nicht weiter




    Hier meine Codes



    new st1[120];
    new st2[120];
    new st3[120];
    new st4[120];
    new st5[120];
    new st6[120];
    new st7[120];
    new st8[120];
    new st9[120];
    new st10[120];
    new st11[120];
    new st12[120];
    new st13[120];
    new st14[120];
    new st15[120];
    new st16[120];
    new st17[120];
    new all[1500];




    format(st1, sizeof(st1), "Zeit: %02d:%02d Datum: %s.%s.%d",Hour,Minute,dtext, mtext);
    format(st2, sizeof(st2), "Nickname: %s",Spieler);
    format(st3, sizeof(st3), "Login: %d",pInfo[playerid][pGesamtMinutes]);
    format(st4, sizeof(st4), "Payday in: %d Minuten",60-pInfo[playerid][pPlayMinutes]);
    format(st5, sizeof(st5), "Accounttyp: %s",pPremiumText);
    format(st6, sizeof(st6), "Warns: %d",pInfo[playerid][pWarn]);
    format(st7, sizeof(st7), "Level: %d",pInfo[playerid][pLevel]);
    format(st8, sizeof(st8), "LoG Points: %d",pInfo[playerid][pLoGPoints]);
    format(st9, sizeof(st9), "Gesamtspielzeit: %d Minuten",pInfo[playerid][pGesamtspielzeit]);
    format(st10, sizeof(st10), "Exp: %d",pInfo[playerid][pExp]);
    format(st11, sizeof(st11), "Pincode: %s",pBankkontoText);
    format(st12, sizeof(st12), "Alter: %d",pInfo[playerid][pAlter]);
    format(st13, sizeof(st13), "Kontostand: %d$",pInfo[playerid][pBankGeld]);
    format(st14, sizeof(st14), "Geld (Hand): %d$",GetPlayerMoney(playerid));
    format(st15, sizeof(st15), "Fraktion: %s",pFraktionsText);
    format(st16, sizeof(st16), "Rang: %d",pInfo[playerid][pRank]);
    format(st17, sizeof(st17), "Beruf: %d",pInfo[playerid][pJob]);
    format(all, sizeof(all), "%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s", st1,st2,st3,st4,st5,st6,st7,st8,st9,st10,st11,st12,st13,st14,st15,st16,st17);
    ShowPlayerDialog(playerid,DIALOG_STATS,DIALOG_STYLE_MSGBOX," {FFFA00}Life of German Stats", all,"Okay","");

  • Zitat

    Ich bin jetzt gerade mal bei der Hälfte und jetzt gehts halt nicht weiter


    Wie meinst du das?


    Ich würde den Code so schreiben, ist denke für die Performance besser. (Falls nicht, bitte drauf Hinweisen)


    new string[1024]; //Sicherheitshalber
    format(string, sizeof string, "Zeit: %02d:%02d Datum: %s.%s.%d\n",Hour,Minute,dtext, mtext),
    format(string, sizeof string, "%sNickname: %s\n",string, Spieler),
    format(string, sizeof string, "%sLogin: %d\n",string, pInfo[playerid][pGesamtMinutes]),
    format(string, sizeof string, "%sPayday in: %d Minuten\n",string, 60-pInfo[playerid][pPlayMinutes]),
    format(string, sizeof string, "%sAccounttyp: %s\n",string, pPremiumText),
    format(string, sizeof string, "%sWarns: %d\n",string, pInfo[playerid][pWarn]),
    format(string, sizeof string, "%sLevel: %d\n",string, pInfo[playerid][pLevel]),
    format(string, sizeof string, "%sLoG Points: %d\n",string, pInfo[playerid][pLoGPoints]),
    format(string, sizeof string, "%sGesamtspielzeit: %d Minuten\n",string, pInfo[playerid][pGesamtspielzeit]),
    format(string, sizeof string, "%sExp: %d\n",string, pInfo[playerid][pExp]),
    format(string, sizeof string, "%sPincode: %s\n",string, pBankkontoText),
    format(string, sizeof string, "%sAlter: %d\n",string, pInfo[playerid][pAlter]),
    format(string, sizeof string, "%sKontostand: %d$\n",string, pInfo[playerid][pBankGeld]),
    format(string, sizeof string, "%sGeld (Hand): %d$\n",string, GetPlayerMoney(playerid)),
    format(string, sizeof string, "%sFraktion: %s\n",string, pFraktionsText),
    format(string, sizeof string, "%sRang: %d\n",string, pInfo[playerid][pRank]),
    format(string, sizeof string, "%sBeruf: %d\n",string, pInfo[playerid][pJob]),
    ShowPlayerDialog(playerid,DIALOG_STATS,DIALOG_STYLE_MSGBOX," {FFFA00}Life of German Stats", string, "Okay","");


    mfg :thumbup: