Commands out of sync; you can't run this command now
#3

Quote:
Originally Posted by BlackWolf120
Посмотреть сообщение
can you show us the query code? (whole saving/loading block)
pawn Код:
stock savePlayerAccount(playerid)
{
    new SaveQuery[500];
    format(SaveQuery, sizeof(SaveQuery), "UPDATE `accs` SET `aLevel` = '%d', `Donator` = '%d', `Score` = '%d', `Money` = '%d', `Kills` = '%d', `Deaths` = '%d' WHERE `pName` = '%s'",
    pInfo[playerid][aLevel],
    pInfo[playerid][pDonator],
    GetPlayerScore(playerid),
    GetPlayerMoney(playerid),
    pInfo[playerid][pKills],
    pInfo[playerid][pDeaths],
    pName(playerid));

    mysql_query(SaveQuery);
    return playerid;
}

stock isPlayerWhiteListed(playerid)
{
    new string[81];
    Format(string, "SELECT `pName` FROM `whitelist` WHERE `pName` = '%s'", pName(playerid));
    mysql_query(string);
    mysql_store_result();
    if(mysql_num_rows() != 0 && mysql_ping(connection) != -1)
    {
        mysql_free_result();
        return 1;
    }
    mysql_free_result();
    return 0;
}

stock serverInfoUpdate(bool:connect)
{
    if(connect == true)
    {
        mysql_query("UPDATE `sinfo` SET `onlineplayers` = `onlineplayers` +1");
    }
    else
    {
        mysql_query("UPDATE `sinfo` SET `onlineplayers` = `onlineplayers` -1");
    }
}
Reply


Messages In This Thread
Commands out of sync; you can't run this command now - by Unknown123 - 16.12.2011, 12:25
Re: Commands out of sync; you can't run this command now - by BlackWolf120 - 16.12.2011, 12:43
Re: Commands out of sync; you can't run this command now - by Unknown123 - 16.12.2011, 12:49
Re: Commands out of sync; you can't run this command now - by BlackWolf120 - 16.12.2011, 13:26
Re: Commands out of sync; you can't run this command now - by Unknown123 - 16.12.2011, 13:47
Re: Commands out of sync; you can't run this command now - by BlackWolf120 - 16.12.2011, 13:51
Re: Commands out of sync; you can't run this command now - by Unknown123 - 16.12.2011, 14:02
Re: Commands out of sync; you can't run this command now - by Laronic - 16.12.2011, 15:04

Forum Jump:


Users browsing this thread: 3 Guest(s)