Valhalla Legends Forums Archive | Battle.net Bot Development | CSB - Receiving W3 Statstring?

AuthorMessageTime
phvckmeh
I use CSB and ive programmed a nice moderation bot for my channel. I was wondering how I could receive the string that says,
Bob, a level 18 nightelf with icon keeper of the grove icon in clan sK has joined the channel.

I thought it would be the userjoins(message) but that is vbnullstring when a w3tft player joins


Any ideas? the reason i want this is so i can automattically ban certain clans
July 13, 2004, 9:26 PM
ChR0NiC
Perhaps CSB was made before the release of W3XP?

Edit:
Perhaps do a select case on the products and if the product is W3XP parse it yourself.

Edit2:
IIRC, CSB gives you the parsed message and the original string as well just in case such an event happens.
July 13, 2004, 9:29 PM
phvckmeh
okay, but how do i receive that string? my bot is on starcraft and i think that since SC dosent display w3 win icons that the string wouldnt be sent to a sc client
July 13, 2004, 9:37 PM
ChR0NiC
It's one of the variables in the UserJoins sub.

[code]
Private Sub CleanSlateBot1_UserJoins(ByVal Username As String, ByVal Flags As Long, ByVal Message As String, ByVal Ping As Long, ByVal Product As String, SimulatedEvent As Boolean)
[/code]

The one that displays the string is Message. That gives you the statstring IIRC!!

Edit: Nope I was wrong, Message is the already parsed statstring. I guess the only way to get the statstring I believe is in FlagsUpdate...

Sorry I am unsure how to get the statstring using CSB, I guess Cuphead didn't properly prepare his active X control for such an event.
July 13, 2004, 9:40 PM
phvckmeh
on the flags update MESSAGE, i found i could receive this if i unsquelched someone, there must be an easier way lol
July 13, 2004, 10:07 PM
Myndfyr
[quote author=phvckmeh link=board=17;threadid=7693;start=0#msg70234 date=1089754639]
okay, but how do i receive that string? my bot is on starcraft and i think that since SC dosent display w3 win icons that the string wouldnt be sent to a sc client
[/quote]

Yes, it does. That isn't the string received by the client; it looks more like:

[code]
[Product-ID-DWORD] 3W[Icon-Tier][Icon-Race] [Clan-Tag-DWORD]
[/code]

Roughly, if you get my TFT statstring you get:

PX3W 3W2H AoA

It just so happens that AoA is the same backwards and forwards, so if you were to have the same statstring but in vL, you'd get:

PX3W 3W2H Lv

The clan-tag is always left-aligned, so while it is a DWORD, the two right-side bytes are nulls.

Part of the problem you'll encounter is that you now have to keep track of the names of the icons.

I don't have ALL of the icons in my bot, but as I recall, the imagelist I use is 66 icons long. That incorporates Starcraft Retail/Shareware/JStar into the Starcraft icon, Diablo Shareware/Retail into the Diablo icon, etc. Then I have the standard WC3 and TFT icons, and all of the named/rank icons (21 for WC3, 31 for TFT).

I also have the names in my library.

Hope that helps you out, or at least points you in the right direction.
July 13, 2004, 10:52 PM
ChR0NiC
Remember that he is using CSB
July 13, 2004, 10:54 PM
Myndfyr
[quote author=ChR0NiC link=board=17;threadid=7693;start=0#msg70249 date=1089759265]
Remember that he is using CSB
[/quote]

That's the statstring. If you're right about the statstring coming through the Message variable in UserJoins, then he should be able to parse it.

Notes:

Icon tiers go from 1 to 5 (where tier 1 is ALWAYS the Orc Peon, opeo) in Warcraft III and 1 to 6 (where tier 1 is ALWAYS the Orc Peon) in Frozen Throne.

Race abbreviations for Warcraft III:
R = Random
H = Human
O = Orc
N = Night Elf
U = Undead

For Frozen Throne, they are the same but with the addition of:
D = Tournament

Hth
July 13, 2004, 10:58 PM
phvckmeh
thanks i understand all of that

now lets say i want (hypotheticcaly) to autoban clan PUSY

the only way ive found to even RECEIVE that statstring is to unsquelch (anyone) in the channel, then i receive that string for every single usr.

so when a user joins, i would send unsquelch then search each and every string for USYP and ban any users with that

im asking if there is an easier way to recive it rather than unsquelch

when i unsquelch i get it from flagsupdate(message)
July 13, 2004, 11:06 PM
LoRd
You receive the user's stat string (including their clan) on channel join/user events.
July 13, 2004, 11:40 PM
phvckmeh
[quote author=LoRd[nK] link=board=17;threadid=7693;start=0#msg70260 date=1089762010]
You receive the user's stat string (including their clan) on channel join/user events.
[/quote]

i dont think so, the userjoins(message) is vbnullstring for w3 clients, for d2 chars its "Charactername has joined, a lvl x paladin etc"
July 13, 2004, 11:44 PM
ChR0NiC
Like I said, CSB doesn't support W3 statstrings.
July 13, 2004, 11:52 PM
phvckmeh
[quote author=ChR0NiC link=board=17;threadid=7693;start=0#msg70263 date=1089762776]
Like I said, CSB doesn't support W3 statstrings.
[/quote]

but it does, i receive the statstring un parsed for everyone in the channel if i unsquelch myself via FlagsUpdate(message)
July 14, 2004, 12:01 AM
LoRd
[quote]Quote from: LoRd[nK] on Today at 04:40:10pm
You receive the user's stat string (including their clan) on channel join/user events.

i dont think so, the userjoins(message) is vbnullstring for w3 clients, for d2 chars its "Charactername has joined, a lvl x paladin etc"[/quote]
Because there's a bug in CSB, get over it.
July 14, 2004, 12:08 AM
phvckmeh
ok forget all the other stuff

what im asking is, is there an easier way to recieve the statstring rather than unsquelch everyone who joins the channel?
July 14, 2004, 12:13 AM
phvckmeh
also, where can i download the warcraft 3 tft icons in bmp or similar format? (for use with my bot) ive searched around and no luck
July 14, 2004, 2:00 AM
ChR0NiC
[quote author=phvckmeh link=board=17;threadid=7693;start=0#msg70268 date=1089764028]
ok forget all the other stuff

what im asking is, is there an easier way to recieve the statstring rather than unsquelch everyone who joins the channel?
[/quote]

Not possible, with CSB sorry.

[quote author=phvckmeh link=board=17;threadid=7693;start=15#msg70275 date=1089770442]
also, where can i download the warcraft 3 tft icons in bmp or similar format? (for use with my bot) ive searched around and no luck
[/quote]

Here
July 14, 2004, 2:17 AM
phvckmeh
what size do i need to shrink em too, or is there a zip with this already done?
July 14, 2004, 2:19 AM
Myndfyr
[quote author=phvckmeh link=board=17;threadid=7693;start=15#msg70277 date=1089771574]
what size do i need to shrink em too, or is there a zip with this already done?
[/quote]

My god man, do you want the whole bot handed to you on a silver platter?

Take some time out of your busy schedule and make them whatever size you want. I made mine IIRC 32x21.

[edit] I suppose you could download my bot and look in the Program Files\ArmaBot Alpha 4\images folder.

[edit 2] I guess I didn't change the size. :O But the imagelist specifies 32x21, or 32x19. The icons you're looking for are in "official-static," "reign-of-chaos-static", and "frozen-throne-static." The others are for a menu and for my profile display (the animated ones).
July 14, 2004, 2:28 AM
phvckmeh
why the fuck would i waste my time edting 20+ bitmaps when its possible somene else already did it?
July 14, 2004, 2:43 AM
ChR0NiC
Because that's the pussy way of doing it.
July 14, 2004, 2:57 AM
phvckmeh
[quote author=ChR0NiC link=board=17;threadid=7693;start=15#msg70282 date=1089773845]
Because that's the pussy way of doing it.
[/quote]

then i guess i am what i eat
July 14, 2004, 6:14 AM
SiMi
[quote author=phvckmeh link=board=17;threadid=7693;start=15#msg70306 date=1089785643]
[quote author=ChR0NiC link=board=17;threadid=7693;start=15#msg70282 date=1089773845]
Because that's the pussy way of doing it.
[/quote]

then i guess i am what i eat
[/quote]
ahah good one.
July 14, 2004, 6:41 AM
Adron
Doesn't CSB support obtaining the raw, unprocessed packets from b.net in some way?
July 14, 2004, 7:35 AM
phvckmeh
[quote author=Adron link=board=17;threadid=7693;start=15#msg70315 date=1089790550]
Doesn't CSB support obtaining the raw, unprocessed packets from b.net in some way?
[/quote]
i checked any the only thing i found was unhandledpacket()

i tried it and it didnt trigger at all :P
July 14, 2004, 8:10 AM
phvckmeh
just realized something weird, i receive it for w3 ROC users, but not TFT users...
July 15, 2004, 4:35 AM
phvckmeh
no1 knows?
July 26, 2004, 4:21 AM
Newby
Parse it yourself.
July 26, 2004, 4:36 AM
phvckmeh
i already wrote the code for thr parsing, but i dont accutaly receive it!
July 26, 2004, 4:37 AM
ChR0NiC
Yes we know, simply CSB was not designed to display the raw packets unparsed, unless you receive it in flags update. Just the way it is, not sure but maybe it was updated in this version though. You can get it here
July 26, 2004, 4:38 AM
phvckmeh
[quote author=ChR0NiC link=board=17;threadid=7693;start=15#msg72604 date=1090816715]
Yes we know, simply CSB was not designed to display the raw packets unparsed, unless you receive it in flags update. Just the way it is, not sure but maybe it was updated in this version though. You can get it here
[/quote]

okay, then isnt it weird that i receive it for EVERY OTHER game? sc/d2/war3 just not TFT??
July 26, 2004, 3:47 PM
ChR0NiC
You obviously don't understand that, CSB was made BEFORE Frozen Throne was. Therefore he didn't add SUPPORT FOR IT !!
July 26, 2004, 9:07 PM
phvckmeh
[quote author=ChR0NiC link=board=17;threadid=7693;start=30#msg72712 date=1090876021]
You obviously don't understand that, CSB was made BEFORE Frozen Throne was. Therefore he didn't add SUPPORT FOR IT !!
[/quote]

well now that you said it, i understand
July 26, 2004, 9:10 PM
ChR0NiC
Did you try CSB2 that I suggested?

[quote author=ChR0NiC link=board=17;threadid=7693;start=15#msg72604 date=1090816715]
Yes we know, simply CSB was not designed to display the raw packets unparsed, unless you receive it in flags update. Just the way it is, not sure but maybe it was updated in this version though. You can get it [u]here[/u]
[/quote]

I believe it has all sorts of new support, although I never really looked into this version, much like the other version. But I'm sure you can figure this one out, it couldn't be all that different, I believe Cuphead added W3 logon in this version.
July 26, 2004, 9:11 PM
phvckmeh
i have been using CSB2, the war3 logon errors with CSB, it was discussed earlier.
July 27, 2004, 4:57 AM
Myndfyr
[quote author=phvckmeh link=board=17;threadid=7693;start=30#msg72816 date=1090904264]
i have been using CSB2, the war3 logon errors with CSB, it was discussed earlier.
[/quote]

You could use my bot API and VB .NET. :-P It's almost like CSB, just more powerful.
July 27, 2004, 9:10 AM

Search