Errors bei Register/Login System

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
  • Hi Leute :D ich habe Errors bei meinem Register/Login System und ich versteh nicht warum


    C:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : error 029: invalid expression, assumed zeroC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : warning 215: expression has no effectC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : warning 215: expression has no effectC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : warning 215: expression has no effectC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : warning 215: expression has no effectC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : warning 215: expression has no effectC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : error 001: expected token: ";", but found ")"C:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : error 029: invalid expression, assumed zeroC:\Program Files (x86)\Rockstar Games\Grand Theft Auto San Andreas\Wanted Reallife\gamemodes\Untitled.pwn(120) : fatal error 107: too many error messages on one line
    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


    4 Errors.





    ShowPlayerDialog(playerid,Dialog_Login,DIALOG_STYLE_PASSWORD,"Login","Bitte logge dich ein","Abbrechen","Weiter");

  • new pname[MAX_PLAYERS],accFormat[128];
    GetPlayerName(playerid,pname,sizeof pname);
    format(accFormat,sizeof(accFormat),"%s.datei",pname);
    if(fexist(accFormat))
    {
    ShowPlayerDialog(playerid,Dialog_Login,DIALOG_STYLE_PASSWORD,"Login","Bitte logge dich ein","Abbrechen","Weiter");
    }
    else
    {
    ShowPlayerDialog(playerid,Dialog_Reg,DIALOG_STYLE_INPUT,"Registrieren","Bitte Registriere dich","Abbrechen","Weiter");
    }

    2 Mal editiert, zuletzt von iTz_Flo ()