error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
case DIALOG_LOGIN:
{
if ( !response ) return Kick ( playerid );
if( response )
{
if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
new Message[256];
format(Message, sizeof(Message), "%s joined!", ReturnName(playerid));
SendClientMessageToAll(-1, Message);
}
else
{
FailLogin[playerid]++;
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,"Login","You have entered an incorrect password.\nType your password below to login.","Login","Quit");
}
else
FailLogin[playerid]++;
{
if(FailLogin[playerid] == MAX_FAIL_LOGINS)
{
Kick(playerid);
}
}
return 1;
}
}
}
else
FailLogin[playerid]++;
{
case DIALOG_LOGIN: { if ( !response ) return Kick ( playerid ); if( response ) { if(udb_hash(inputtext) == PlayerInfo[playerid][pPass]) { INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid); GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]); new pname[MAX_PLAYER_NAME]; GetPlayerName(playerid, pname, sizeof(pname)); new Message[256]; format(Message, sizeof(Message), "%s joined!", ReturnName(playerid)); SendClientMessageToAll(-1, Message); } else { FailLogin[playerid]++; ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,"Login","You have entered an incorrect password.\nType your password below to login.","Login","Quit"); } else { FailLogin[playerid]++; { if(FailLogin[playerid] == MAX_FAIL_LOGINS) { Kick(playerid); } } } return 1; } } }
I think this is your problem.
pawn Код:
|
case DIALOG_LOGIN:
{
if ( !response ) return Kick ( playerid );
if( response )
{
if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
new Message[256];
format(Message, sizeof(Message), "%s joined!", ReturnName(playerid));
SendClientMessageToAll(-1, Message);
}
else
{
FailLogin[playerid]++;
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,"Login","You have entered an incorrect password.\nType your password below to login.","Login","Quit");
if(FailLogin[playerid] == MAX_FAIL_LOGINS)
{
Kick(playerid;
}
}
return 1;
}
}
}
Try this.
pawn Код:
|