02.02.2015, 16:31
Pleeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeaseeeee!!!!!!!! !!!!!!!!!!!!!!
What to do with this plesae i want to play!!!!!!!!!!!!!!!!!!
i upload all SQL Tables its work on windows but in linux not why?
Stock Here:
Dialog Here
What to do with this plesae i want to play!!!!!!!!!!!!!!!!!!
i upload all SQL Tables its work on windows but in linux not why?
Stock Here:
pawn Код:
stock OnPlayerLogin(playerid, password[])
{
new
sqlQuery[300],
password2 = num_hash(password)
;
format(sqlQuery, sizeof(sqlQuery), "SELECT * FROM samp_users WHERE `Username`='%s' AND `Password`='%d'", GPN(playerid), password2);
mysql_query(sqlQuery, THREAD_LOGIN, playerid);
return 1;
}
pawn Код:
if(dialogid == 1245)
{
if(response)
{
strmid(Typed[playerid], inputtext, 0, strlen(inputtext), 255);
if(!strcmp(Typed[playerid], "None", true))
{
ShowPlayerDialog(playerid, 1245, DIALOG_STYLE_PASSWORD,"Try Again, Please Log-In","You didn't type a password!\nType your password below to log-in","Log-in","Quit");
}
else
{
OnPlayerLogin(playerid, inputtext);
}
}
else
{
Kick(playerid);
}
}