• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Players Online 1 or 0/NULL

Sigoles

Discord: @sigoles
Joined
Nov 20, 2015
Messages
1,209
Solutions
2
Reaction score
154
Hello, how I do to put 1 in colum "online" when X player is online and 0/NULL if offline?
PS. I'm online and there is "NULL" ...
2XugIrE.png


iologindata.cpp

Code:
void IOLoginData::updateOnlineStatus(uint32_t guid, bool login)
{
    if (g_config.getBoolean(ConfigManager::ALLOW_CLONES)) {
        return;
    }

    std::ostringstream query;
    if (login) {
        query << "INSERT INTO `players_online` VALUES (" << guid << ')';
    } else {
        query << "DELETE FROM `players_online` WHERE `player_id` = " << guid;
    }
    Database::getInstance()->executeQuery(query.str());
}
 
Back
Top