Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: WuB on August 04, 2003, 03:15 PM

Title: War 3 Packets
Post by: WuB on August 04, 2003, 03:15 PM
does anyone know the packets sent when changing icons for war3?
Title: Re:War 3 Packets
Post by: Hazard on August 04, 2003, 03:17 PM
Have we used both the search function and checked BNet Docs for this answer?

!~!HaZaRD!~!
Title: Re:War 3 Packets
Post by: Eibro on August 04, 2003, 03:18 PM
 Yes

If you want to find out, log on with War3, begin a packetlog and change your icon. Repeat as necessary.
Title: Re:War 3 Packets
Post by: WuB on August 04, 2003, 03:26 PM
my packet sniffer didn't show anything, what do you use?
Title: Re:War 3 Packets
Post by: Eibro on August 04, 2003, 04:08 PM
Ethereal
www.ethereal.com
Title: Re:War 3 Packets
Post by: WuB on August 04, 2003, 05:56 PM
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
Title: Re:War 3 Packets
Post by: Dark-Feanor on August 05, 2003, 08:05 PM
Quote from: WuB on August 04, 2003, 03:15 PM
does anyone know the packets sent when changing icons for war3?
What the hell are you talking about. Changing icons?
Title: Re:War 3 Packets
Post by: Stealth on August 06, 2003, 12:56 AM
Warcraft III users with enough wins in specific areas can choose to change icons.
Title: Re:War 3 Packets
Post by: Camel on August 10, 2003, 11:32 AM
Quote from: WuB on August 04, 2003, 05:56 PM
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

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

       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")