titlepacket what is the 2nd index

10/25/2019 03:37 0Lucifer0#1
Hey :)
i'm currently adding the title system to my emulator and the packet title is like that
title 0.5 11.3

it's quite obvious 0 and 11 in the exemple are titleId but i can't find what the 5 and 3 stand for...

i've did multiple tests on official and it is always 1 3 5 7.

seems like every 2 the title doesn't show up.

NVM seems to be a bit flag :)

0=>selection invisible
1=>selection visible
3=>visible
5=>effective
7=>effective and visible
10/27/2019 03:02 Beazel#2
It may be that 5 or 7 is to execute the benefit that the title gives you and 5 or 7 is to execute the title that is under the name of your character.
10/27/2019 04:27 0Lucifer0#3
Quote:
Originally Posted by Beazel View Post
It may be that 5 or 7 is to execute the benefit that the title gives you and 5 or 7 is to execute the title that is under the name of your character.
The answer is already in the message
Quote:
NVM seems to be a bit flag

0=>selection invisible
1=>selection visible
3=>visible
5=>effective
7=>effective and visible
This is just because it use three bit values
IsOwned IsVisible IsActive => value
0,0,0=>0
1,0,0=>1
1,1,0=>3
1,0,1=>5
1,1,1=>7

Values 2,4,6 are not making sense in this case