• Welcome to Valhalla Legends Archive.
 

Line of data

Started by UnderCover, October 10, 2004, 07:48 PM

Previous topic - Next topic

UnderCover

hey,

I was just wondering what a piece of data was from this line:

Battle.net sends

1001 USER username 0010 user_client

sometimes its

1001 USER username 0000 user_client

wut is the 0000 and 0010 mean

it is also on

JOIN username 0000 user_client

and leave and whisper

anyone have any ideas i tohught it was the ping but that may not be right since those were the only 2 values i found.....

Tuberload

Quote"Pray not for lighter burdens, but for stronger backs." -- Teddy Roosevelt
"Your forefathers have given you freedom, so good luck, see you around, hope you make it" -- Unknown

UnderCover

anyone know wut the user flags are and wut they meaning


what does 0000 mean

0010 and so on and wut are the other ones?

thanks

iago

You know when you're playing a game and you see that unplugged image at the right?  0010 means they have that unplugged image.
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*


Grok

Someone could paste him the flags masks and he'd be happy.

iago

Sure.  Here are the flags that exist:

public class BNetUserFlags
{
    public static final int USER_BLIZZREP = 0x01; 
    public static final int USER_CHANNELOP = 0x02;
    public static final int USER_SPEAKER = 0x04;
    public static final int USER_ADMIN = 0x08; 
    public static final int USER_NOUDP = 0x10; 
    public static final int USER_SQUELCHED = 0x20; 
    public static final int USER_GUEST = 0x40; 
    public static final int USER_BEEPENABLED = 0x100; 
    public static final int USER_PGLPLAYER = 0x200; 
    public static final int USER_PGLOFFICIAL = 0x400; 
    public static final int USER_KBKPLAYER = 0x800;
    public static final int USER_KBKOFFICIAL = 0x1000; 
    public static final int USER_JAILED = 0x100000; 
    public static final int USER_GFPLAYER = 0x200000; 
}
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*


UserLoser.

USER_JAILED?  Isn't that supposed to be some GameFixx sort of thing?  I do know that users who are on so-called jailed cdkeys do not receive any special flags while being in The Void

iago

Quote from: UserLoser on October 11, 2004, 06:37 PM
USER_JAILED? Isn't that supposed to be some GameFixx sort of thing? I do know that users who are on so-called jailed cdkeys do not receive any special flags while being in The Void

Those flags are straight from BNetDocs, converted to Java.
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*