not loading stats
#7

hmm for some reason no :/ im going to give you another stock thats connected to that one and maybe that will sort it out

pawn Код:
stock LoginPlayer(playerid,const password[])
{
    new EscapedText[60], Query[200];
    mysql_real_escape_string(password, EscapedText);
    format(Query,sizeof(Query),"SELECT * FROM `users` WHERE `username` = '%s' AND `password` = '%s'",PlayerName(playerid),EscapedText);
    mysql_query(Query);
    mysql_store_result();
    if(mysql_num_rows() != 0) {
        SendClientMessage(playerid,COLOR_GREEN,"You have been logged in!");
        LoadStats(playerid);
    }
    else {
        SendClientMessage(playerid,COLOR_RED,"Wrong password!");
        Kick(playerid);
    }
    mysql_free_result();
    return 1;
}
Reply


Messages In This Thread
not loading stats - by thefatshizms - 25.08.2012, 20:10
Re: not loading stats - by Camacorn - 25.08.2012, 20:12
Re: not loading stats - by thefatshizms - 25.08.2012, 20:13
Re: not loading stats - by Camacorn - 25.08.2012, 20:17
Re: not loading stats - by thefatshizms - 25.08.2012, 20:27
Re: not loading stats - by Camacorn - 25.08.2012, 20:32
Re: not loading stats - by thefatshizms - 25.08.2012, 20:48
Re: not loading stats - by Camacorn - 25.08.2012, 20:50
Re: not loading stats - by thefatshizms - 25.08.2012, 20:54
Re: not loading stats - by Camacorn - 25.08.2012, 20:58

Forum Jump:


Users browsing this thread: 3 Guest(s)