Valhalla Legends Forums Archive | Battle.net Bot Development | War 3 Packets

AuthorMessageTime
WuB
does anyone know the packets sent when changing icons for war3?
August 4, 2003, 8:15 PM
DrivE
Have we used both the search function and checked BNet Docs for this answer?

!~!HaZaRD!~!
August 4, 2003, 8:17 PM
Eibro
Yes

If you want to find out, log on with War3, begin a packetlog and change your icon. Repeat as necessary.
August 4, 2003, 8:18 PM
WuB
my packet sniffer didn't show anything, what do you use?
August 4, 2003, 8:26 PM
Eibro
Ethereal
www.ethereal.com
August 4, 2003, 9:08 PM
WuB
okay.. i can't find the sent packet..
i see 2d3w when i changed icon to tournament icon
and 2n3w when i change it to tier 2 night elf
August 4, 2003, 10:56 PM
DaRk-FeAnOr
[quote author=WuB link=board=17;threadid=2204;start=0#msg17027 date=1060028152]
does anyone know the packets sent when changing icons for war3?
[/quote]
What the hell are you talking about. Changing icons?
August 6, 2003, 1:05 AM
Stealth
Warcraft III users with enough wins in specific areas can choose to change icons.
August 6, 2003, 5:56 AM
Camel
[quote author=WuB link=board=17;threadid=2204;start=0#msg17043 date=1060037763]
okay.. i can't find the sent packet..
i see 2d3w when i changed icon to tournament icon
and 2n3w when i change it to tier 2 night elf
[/quote]

W3D2 is the code for Tournament tier 2
W3N2 is the code for Night Elf tier 2

[code] Case "H1", "O1", "N1", "U1", "R1"
GetW3IconName = "Orc Peon"

Case "H2": GetW3IconName = IIf(Expansion, "Rifleman", "Footman")
Case "H3": GetW3IconName = IIf(Expansion, "Sorceress", "Knight")
Case "H4": GetW3IconName = IIf(Expansion, "Spellbreaker", "Archmage")
Case "H5": GetW3IconName = IIf(Expansion, "Blood Mage", "Medivh")
Case "H6": GetW3IconName = IIf(Expansion, "Kael", "UNKNOWN")

Case "O2": GetW3IconName = IIf(Expansion, "Troll Headhunter", "Grunt")
Case "O3": GetW3IconName = IIf(Expansion, "Shaman", "Tauren")
Case "O4": GetW3IconName = IIf(Expansion, "Spirit Walker", "Far Seer")
Case "O5": GetW3IconName = IIf(Expansion, "Shadow Hunter", "Thrall")
Case "O6": GetW3IconName = IIf(Expansion, "Rexxar", "UNKNOWN")

Case "N2": GetW3IconName = IIf(Expansion, "Huntress", "Archer")
Case "N3": GetW3IconName = IIf(Expansion, "Druid of the Talon", "Druid of the Claw")
Case "N4": GetW3IconName = IIf(Expansion, "Dryad", "Priestess of the Moon")
Case "N5": GetW3IconName = IIf(Expansion, "Warden", "Furion Stormrage")
Case "N6": GetW3IconName = IIf(Expansion, "Maiev", "UNKNOWN")

Case "U2": GetW3IconName = IIf(Expansion, "Crypt Fiend", "Ghoul")
Case "U3": GetW3IconName = IIf(Expansion, "Banshee", "Abomination")
Case "U4": GetW3IconName = IIf(Expansion, "Destroyer", "Lich")
Case "U5": GetW3IconName = IIf(Expansion, "Crypt Lord", "Tichondrius")
Case "U6": GetW3IconName = IIf(Expansion, "Sylvanas", "UNKNOWN")

Case "R2": GetW3IconName = IIf(Expansion, "Myrmidon", "Green Dragon Whelp")
Case "R3": GetW3IconName = IIf(Expansion, "Siren", "Blue Dragon")
Case "R4": GetW3IconName = IIf(Expansion, "Dragon Turtle", "Red Dragon")
Case "R5": GetW3IconName = IIf(Expansion, "Sea Witch", "Deathwing")
Case "R6": GetW3IconName = IIf(Expansion, "Illidan", "UNKNOWN")

'i'm not sure if this section is right
Case "D2": GetW3IconName = IIf(Expansion, "Felguard", "UNKNOWN")
Case "D3": GetW3IconName = IIf(Expansion, "Infernal", "UNKNOWN")
Case "D4": GetW3IconName = IIf(Expansion, "Doomguard", "UNKNOWN")
Case "D5": GetW3IconName = IIf(Expansion, "Pit Lord", "UNKNOWN")
Case "D6": GetW3IconName = IIf(Expansion, "Archimonde", "UNKNOWN")[/code]
August 10, 2003, 4:32 PM

Search