Author | Message | Time |
---|---|---|
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..... | October 11, 2004, 12:48 AM |
Tuberload | User flags | October 11, 2004, 1:08 AM |
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 | October 11, 2004, 2:26 AM |
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. | October 11, 2004, 5:49 AM |
Grok | Someone could paste him the flags masks and he'd be happy. | October 11, 2004, 4:57 PM |
iago | Sure. Here are the flags that exist: [code]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; }[/code] | October 11, 2004, 6:37 PM |
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 | October 11, 2004, 11:37 PM |
iago | [quote author=UserLoser link=topic=9088.msg84008#msg84008 date=1097537859] 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 [/quote] Those flags are straight from BNetDocs, converted to Java. | October 11, 2004, 11:47 PM |