Hallo Leute... ich wollte gerade ein Register Script erstellen und pawno sagt mir, dass ich nen if fehler irgendwo drin habe, wobei alles geschlossen wurde oder nicht?
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid==Dialog_Register);
{
if(response==0)
{
SendClientMessage(playerid,Rot,"Bitte Registriere dich!");
kick(playerid);
return 1;
}
if(response==1)
{
if(!strlen(inputtext))
{
SendClientMessage(playerid,Rot,"Dein Passwort ist zu kurz!");
ShowPlayerDialog(playerid,Dialog_Register,DIALOG_STYLE_INPUT,"Registrieren","Wie soll dein Passwort lauten?","Registrieren","Abbrechen");
return 1;
}
else
{
Register(playerid,inputtext);
return 1;
}
}
}
return 1;
}
if fehler?
- amazeing.photography
- Geschlossen
- Erledigt
-
-
Poste mal bitte den errorcode und die Zeile dazu
-
if(dialogid==Dialog_Register);
Warum machst du bei einer IF Abfrage ein Semikolon dahinter ? -
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(266) : error 001: expected token: "#endif", but found "-end of file-"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase1 Error.
-
Du hast wohl (sehr weit oben) etwas mit #if angefangen, vermutlich in den ersten Zeilen, ob das Script ein Filterscript sein soll oder nicht, wo du das #endif gelöscht hast.
-
ja stimmt wohl mit filterscript... aber jetzt hab ich noch mehr fehler in einer line...
public OnPlayerConnect(playerid)
{
ShowPlayerDialog(playerid,Dialog_Register,DIALOG_STYLE_INPUT,"Registrieren","Wie soll dein Passwort lauten?","Registrieren","Abbrechen");
return 1;
}
das mit showplayerdialog ist line 54 und da kommt:C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : error 029: invalid expression, assumed zero
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : warning 215: expression has no effect
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : warning 215: expression has no effect
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : warning 215: expression has no effect
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : warning 215: expression has no effect
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : warning 215: expression has no effect
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : error 001: expected token: ";", but found ")"
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : error 029: invalid expression, assumed zero
C:\Program Files\Rockstar Games\Grand Theft Auto San Andreas\gamemodes\Untitled.pwn(54) : fatal error 107: too many error messages on one lineCompilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
-
breadfish.de
Hat das Thema geschlossen.