• 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!

Bless golden set

Ü Pendragon

Member
Joined
Apr 10, 2017
Messages
51
Reaction score
6
Hello, could someone help me? What I want to do is that the golden set or the golden bars that are seen when you have bless are shown only when the player has all the bless (8), if they have less, they are not shown. Thanks in advance

C++:
void ProtocolGame::sendBlessStatus()
{
    NetworkMessage msg;
    //uint8_t maxClientBlessings = (player->operatingSystem == CLIENTOS_NEW_WINDOWS) ? 8 : 6; (compartability for the client 10)
    //Ignore ToF (bless 1)
    uint8_t blessCount = 0;
    uint16_t flag = 0;
    uint16_t pow2 = 2;
    for (int i = 1; i <= 8; i++) {
        if (player->hasBlessing(i)) {
            if (i > 1)
                blessCount++;
            flag |= pow2;
        }
        pow2 = pow2 * 2;
    }

    msg.addByte(0x9C);

    if (player->getProtocolVersion() >= 1120) {
        if (blessCount >= 5) //Show up the glowing effect in items if have all blesses
            flag |= 1;

        msg.add<uint16_t>(flag);
        msg.addByte((blessCount >= 7) ? 3 : ((blessCount >= 5) ? 2 : 1)); // 1 = Disabled | 2 = normal | 3 = green
    }else if (blessCount >= 5) {
        msg.add<uint16_t>(0x01);
    } else {
        msg.add<uint16_t>(0x00);
    }

    writeToOutputBuffer(msg);
}
 
Back
Top