Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: vodkahn on March 05, 2012, 01:35 AM

Title: Find result of game in starcraft
Post by: vodkahn on March 05, 2012, 01:35 AM
Hi everybody,
I've a question in starcraft. I want to know when a game is end, the current player is victory or defeat. I've use SCGP( starcraft game protocol) to find the packet Quit game, but in multiplayers, example (2-2, 3-3, 4-4), in win teams, when a win player quit, it still send packet Quit game( command 0x0B), so I don't know he's winer or loser. Please help me!!

Thanks in advance,
Title: Re: Find result of game in starcraft
Post by: MyndFyre on March 05, 2012, 02:54 AM
In order to do so, you would actually need to emulate the game.  The winner is determined based on the state of the game, not by network traffic or replay storage.
Title: Re: Find result of game in starcraft
Post by: vodkahn on March 05, 2012, 03:59 AM
Quote from: MyndFyre on March 05, 2012, 02:54 AM
In order to do so, you would actually need to emulate the game.  The winner is determined based on the state of the game, not by network traffic or replay storage.
Can you show me how to emulate the game?
Title: Re: Find result of game in starcraft
Post by: MyndFyre on March 05, 2012, 07:45 PM
Quote from: vodkahn on March 05, 2012, 03:59 AM
Can you show me how to emulate the game?
No.
Title: Re: Find result of game in starcraft
Post by: MysT_DooM on March 05, 2012, 10:56 PM
Figure out how the client generates 0x2c (http://bnetdocs.org/?op=packet&pid=187).
And then grab a packet logger (http://www.wireshark.org/) and log the process of joining/creating a game and starting a game and then leaving a game when finished. 
And then attempt to mimic that.  Lots of info on sc udp on this forum, search around a bit, it should be enough to get you on your way to making a game bot.   here's some useful links, here (http://darkblizz.org/Forum2/starcraft/sc-udp-game-research/), here (http://forum.valhallalegends.com/index.php/topic,17702.0.html), here (http://forum.valhallalegends.com/index.php/topic,12107.0.html)
Also to combat the issue of winners leaving early, I assume this is for some game tracking thing, so make it a rule that all players must complete the game in it's entirety, i.e until all opposing forces are eliminated and you are at the Stats screen; or else you will not get recorded with a win.