Let me know if you have problems with it.
My testsite was able to show the data.
you have to make a datastruckture to update old information with the new one. i used some dirty arrays to test it.
Forum Index > SC2 General |
skeldark
Germany2223 Posts
August 09 2012 10:54 GMT
#1381
On August 09 2012 19:15 BurningRanger wrote: Show nested quote + On August 09 2012 19:10 skeldark wrote: 5.4 Out Lastchange: -Data export function (upload your profile to your own webserver) [...] Export format: nickname;server;race;profilelink;MMRlist MMrlist: "," seperated list of all mmr values of all games To file: all accounts in the database To web: Per POST to a php script, one account per call I let you write php scripts to handle the data on your clanserver yourself for now Cool, thanks. ![]() Let me know if you have problems with it. My testsite was able to show the data. you have to make a datastruckture to update old information with the new one. i used some dirty arrays to test it. | ||
Cresar
Spain20 Posts
August 09 2012 11:35 GMT
#1382
| ||
BurningRanger
Germany303 Posts
August 09 2012 12:26 GMT
#1383
On August 09 2012 20:35 Cresar wrote: When I do click on the button to export data nothing happens: S Have you set where to export to? Config has a new tab named "Output". There you can choose to upload to a webby or export into a file. Now I have to learn some php to use the data. ![]() | ||
synd
Bulgaria586 Posts
August 09 2012 14:48 GMT
#1384
+ Show Spoiler + 17:26:40 MMR-Stats 5.4 17:26:40 --------INIT START-------- 17:26:40 OK File-Encoding UTF-8 17:26:40 OK Loading DB 17:26:41 OK DB up to date! 17:26:41 OK Settings loaded! 17:26:41 OK Gamedata: 0 Games loaded. 17:26:41 OK Ramscanner ready! 17:26:41 OK Triggers ready! 17:26:42 OK Gameobserver: ready! 17:26:43 OK: Program is up to date 17:26:43 --------INIT END-------- 17:27:17 -------------------------- 17:27:17 Game Start detected 17:27:17 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 17:28:0 Webgrabber: Player true 17:28:0 No Profile, skip 17:28:0 Webgrabber: Opponent false 17:28:0 PRE-Trigger done OS: Win8 Release Preview 64bit Java version - 1.7.0_05 Java Memory Scanner 32bit, version - idk SC2gears 11.1 MMRstats - latest Scan Memory (more data) - checked SC2gears auto-save replays folder: \Documents\StarCraft II\Accounts\some numbers\s2 and numbers again\Replays\Multiplayer Should I guess the blame on SC2gears because it obviously doesn't save replays? What should my sc2 replays folder be T_T | ||
skeldark
Germany2223 Posts
August 09 2012 15:09 GMT
#1385
On August 09 2012 23:48 synd wrote: Is it just me but everytime I try to run the plugin, I get stuck here + Show Spoiler + 17:26:40 MMR-Stats 5.4 17:26:40 --------INIT START-------- 17:26:40 OK File-Encoding UTF-8 17:26:40 OK Loading DB 17:26:41 OK DB up to date! 17:26:41 OK Settings loaded! 17:26:41 OK Gamedata: 0 Games loaded. 17:26:41 OK Ramscanner ready! 17:26:41 OK Triggers ready! 17:26:42 OK Gameobserver: ready! 17:26:43 OK: Program is up to date 17:26:43 --------INIT END-------- 17:27:17 -------------------------- 17:27:17 Game Start detected 17:27:17 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 17:28:0 Webgrabber: Player true 17:28:0 No Profile, skip 17:28:0 Webgrabber: Opponent false 17:28:0 PRE-Trigger done OS: Win8 Release Preview 64bit Java version - 1.7.0_05 Java Memory Scanner 32bit, version - idk SC2gears 11.1 MMRstats - latest Scan Memory (more data) - checked SC2gears auto-save replays folder: \Documents\StarCraft II\Accounts\some numbers\s2 and numbers again\Replays\Multiplayer Should I guess the blame on SC2gears because it obviously doesn't save replays? What should my sc2 replays folder be T_T Frist: nice error report. Wish everyone would do it this way... ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... Your selected profile is not equal to the account that is playing sc2 right now, Whats your profile link you put in the setup? What does the gamelog-show? Do you play 1vs1 laddergames? The time between init and gamestart is very short. Did you really play a game? can be tthat if sc2 crashed last time he thinks its active because sc2 did not clean up his files. | ||
skeldark
Germany2223 Posts
August 09 2012 16:01 GMT
#1386
very very dirty. I dont know php and i did it in 10 min. File to collect the data form the users: update.php + Show Spoiler + <?php //init data if we dont have yet class playerdata { public $names= array (); public $servers= array (); public $races= array (); public $links= array (); public $mmrs= array (); public $lastmmrs= array (); } $orgdata = new playerdata(); // Open serialized data $data = unserialize( file_get_contents( './player.txt' ) ); if ( $data == null ) { $file = fopen( './player.txt', 'w+' ); fwrite( $file, serialize( $orgdata ) ); $data = $orgdata; echo "INIT"; } // get new data $str=file_get_contents('php://input'); $chars = preg_split('/;/', $str, -1, PREG_SPLIT_OFFSET_CAPTURE); if ( count($chars) < 5 ) { echo "NO"; exit; } $name = $chars[0][0]; $server = $chars[1][0]; $race = $chars[2][0]; $link = $chars[3][0]; $mmrlist= $chars[4][0]; $mmr = preg_split('/,/', $mmrlist, -1, PREG_SPLIT_OFFSET_CAPTURE); $pos = count($mmr)-2; $lastmmr = $mmr[$pos][0]; // find the player $playernr = -1; $temp = $data->names; for ( $i = 0 ; $i < count($data->names) ; $i++) { if ( $temp[$i] == $name ) { $playernr = $i; break; } } if ( $playernr == -1 ) { //create new player $data->names[] =$name; $data->servers[] =$server; $data->races[] =$race; $data->links[] =$link; $data->mmrs[] =$mmrlist; $data->lastmmrs[] = $lastmmr; } else { $data->names[$playernr] =$name; $data->server[$playernr] =$server; $data->races[$playernr] =$race; $data->links[$playernr] =$link; $data->mmrs[$playernr] =$mmrlist; $data->lastmmrs[$playernr] = $lastmmr; } // save data $file = fopen( './player.txt', 'w+' ); fwrite( $file, serialize( $data ) ); fclose($file); echo("Done"); ?> code to show the information: show.php + Show Spoiler + <?php class playerdata { public $names= array (); public $servers= array (); public $races= array (); public $links= array (); public $mmrs= array (); public $lastmmrs= array (); } $orgdata = new playerdata(); // Open serialized data $data = unserialize( file_get_contents( './player.txt' ) ); if ( $data == null ) { echo "No data"; exit(); } $a = $data->names; $c = $data->mmrs; $b = $data->lastmmrs; $d = $data->races; $size = count($a); for ( $i = 0; $i < $size; $i++ ) { echo "$a[$i] $b[$i] $d[$i]<br/>"; echo "$c[$i] <br/>"; } ?> | ||
BurningRanger
Germany303 Posts
August 09 2012 17:53 GMT
#1387
I'm even more impressed by you now... i'll try it tomorrow. Thanks a lot! ![]() | ||
Uncultured
United States1340 Posts
August 09 2012 17:59 GMT
#1388
| ||
BurningRanger
Germany303 Posts
August 09 2012 18:02 GMT
#1389
On August 10 2012 02:59 Uncultured wrote: Can this compiled information be used to determine what MMR you need to get into a ladder division? like 0-200 for bronze 201-400 for silver and so on? The MMRstats Plugin actually shows the promotion/demotion lines, if that's what you mean. | ||
skyyan
United States74 Posts
August 10 2012 07:44 GMT
#1390
| ||
skeldark
Germany2223 Posts
August 10 2012 08:44 GMT
#1391
Thanks to Dakota_Fanning old version is working again! He released a patch to sc2gears so my plugin is loaded even if the api is older ![]() | ||
BurningRanger
Germany303 Posts
August 10 2012 12:46 GMT
#1392
On August 10 2012 02:53 BurningRanger wrote: You did that in 10 minutes? I'm even more impressed by you now... i'll try it tomorrow. Thanks a lot! ![]() Works very nicely so far. (Test Output) Now I have something to play. ![]() I'll see, if I can get it to write into a DB, because it would be nicer (and better, if I got more users' data) than a plain txt file. | ||
Belial88
United States5217 Posts
August 11 2012 07:31 GMT
#1393
2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... In my log when games start. I don't see any problems, I got an MMR line and everything, player data quality you know, sometimes 100%, sometimes not, but it seems to be working fine, but why is it giving me this error every game? I have my profile linked correctly as far as I can tell: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ Here's a log of 2 recent games: + Show Spoiler + 2:46:49 Game Start detected 2:46:49 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:47:31 Webgrabber: Player true 2:47:31 No Profile, skip 2:47:31 Webgrabber: Opponent false 2:47:31 PRE-Trigger done 2:54:36 Webgrabber: Player true 2:54:39 Webgrabber: Opponent true 2:54:39 DATA Alg.B: failed, No Bonus Win 2:54:39 Adjused Calculate Player:true 2:54:39 Adjused Calculate Opponent: true 2:54:39 Gamecheck: true 2:54:39 POST-Trigger done 2:54:39 Player OK?: MMR: true Cap: true Dev.: true 2:54:39 Opponent OK?: MMR: true Cap: true Dev.: true 2:54:39 Player-data-Qualitiy: 100% 2:54:39 Opponent-data-Qualitiy: 100% 2:54:40 OK Uploader: game uploaded 2:54:40 Ladder Game Done! 2:54:40 -------------------------- 2:54:41 -------------------------- 2:54:41 Game Start detected 2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:55:24 Webgrabber: Player true 2:55:24 No Profile, skip 2:55:24 Webgrabber: Opponent false 2:55:24 PRE-Trigger done 3:23:38 Webgrabber: Player true 3:23:41 Webgrabber: Opponent true 3:23:41 DATA Alg.B: failed, No Bonus Win 3:23:41 Adjused Calculate Player:true 3:23:41 Adjused Calculate Opponent: true 3:23:41 Gamecheck: true 3:23:41 POST-Trigger done 3:23:41 Player OK?: MMR: true Cap: true Dev.: true 3:23:41 Opponent OK?: MMR: true Cap: true Dev.: true 3:23:41 Player-data-Qualitiy: 100% 3:23:41 Opponent-data-Qualitiy: 100% 3:23:42 OK Uploader: game uploaded 3:23:42 Ladder Game Done! 3:23:42 -------------------------- | ||
skeldark
Germany2223 Posts
August 11 2012 07:43 GMT
#1394
On August 11 2012 16:31 Belial88 wrote: I'm still getting : 2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... In my log when games start. I don't see any problems, I got an MMR line and everything, player data quality you know, sometimes 100%, sometimes not, but it seems to be working fine, but why is it giving me this error every game? I have my profile linked correctly as far as I can tell: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ Here's a log of 2 recent games: + Show Spoiler + 2:46:49 Game Start detected 2:46:49 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:47:31 Webgrabber: Player true 2:47:31 No Profile, skip 2:47:31 Webgrabber: Opponent false 2:47:31 PRE-Trigger done 2:54:36 Webgrabber: Player true 2:54:39 Webgrabber: Opponent true 2:54:39 DATA Alg.B: failed, No Bonus Win 2:54:39 Adjused Calculate Player:true 2:54:39 Adjused Calculate Opponent: true 2:54:39 Gamecheck: true 2:54:39 POST-Trigger done 2:54:39 Player OK?: MMR: true Cap: true Dev.: true 2:54:39 Opponent OK?: MMR: true Cap: true Dev.: true 2:54:39 Player-data-Qualitiy: 100% 2:54:39 Opponent-data-Qualitiy: 100% 2:54:40 OK Uploader: game uploaded 2:54:40 Ladder Game Done! 2:54:40 -------------------------- 2:54:41 -------------------------- 2:54:41 Game Start detected 2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:55:24 Webgrabber: Player true 2:55:24 No Profile, skip 2:55:24 Webgrabber: Opponent false 2:55:24 PRE-Trigger done 3:23:38 Webgrabber: Player true 3:23:41 Webgrabber: Opponent true 3:23:41 DATA Alg.B: failed, No Bonus Win 3:23:41 Adjused Calculate Player:true 3:23:41 Adjused Calculate Opponent: true 3:23:41 Gamecheck: true 3:23:41 POST-Trigger done 3:23:41 Player OK?: MMR: true Cap: true Dev.: true 3:23:41 Opponent OK?: MMR: true Cap: true Dev.: true 3:23:41 Player-data-Qualitiy: 100% 3:23:41 Opponent-data-Qualitiy: 100% 3:23:42 OK Uploader: game uploaded 3:23:42 Ladder Game Done! 3:23:42 -------------------------- EDIT: Found a big bug in the rammscanner. Dont know how he got there and why noone mention it before oO But the pretrigger op. failed, alg. b failed but you have 100%? that makes no sense... Can you post the gamelong and the mainlog of 1 100% game? | ||
fourbetfldak
Netherlands2 Posts
August 11 2012 08:21 GMT
#1395
| ||
skeldark
Germany2223 Posts
August 11 2012 08:30 GMT
#1396
On August 11 2012 17:21 fourbetfldak wrote: Probably already answered somewhere but couldn't find it in OP, does this work for team games too? no | ||
Belial88
United States5217 Posts
August 11 2012 09:02 GMT
#1397
On August 11 2012 16:43 skeldark wrote: Show nested quote + On August 11 2012 16:31 Belial88 wrote: I'm still getting : 2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... In my log when games start. I don't see any problems, I got an MMR line and everything, player data quality you know, sometimes 100%, sometimes not, but it seems to be working fine, but why is it giving me this error every game? I have my profile linked correctly as far as I can tell: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ Here's a log of 2 recent games: + Show Spoiler + 2:46:49 Game Start detected 2:46:49 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:47:31 Webgrabber: Player true 2:47:31 No Profile, skip 2:47:31 Webgrabber: Opponent false 2:47:31 PRE-Trigger done 2:54:36 Webgrabber: Player true 2:54:39 Webgrabber: Opponent true 2:54:39 DATA Alg.B: failed, No Bonus Win 2:54:39 Adjused Calculate Player:true 2:54:39 Adjused Calculate Opponent: true 2:54:39 Gamecheck: true 2:54:39 POST-Trigger done 2:54:39 Player OK?: MMR: true Cap: true Dev.: true 2:54:39 Opponent OK?: MMR: true Cap: true Dev.: true 2:54:39 Player-data-Qualitiy: 100% 2:54:39 Opponent-data-Qualitiy: 100% 2:54:40 OK Uploader: game uploaded 2:54:40 Ladder Game Done! 2:54:40 -------------------------- 2:54:41 -------------------------- 2:54:41 Game Start detected 2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:55:24 Webgrabber: Player true 2:55:24 No Profile, skip 2:55:24 Webgrabber: Opponent false 2:55:24 PRE-Trigger done 3:23:38 Webgrabber: Player true 3:23:41 Webgrabber: Opponent true 3:23:41 DATA Alg.B: failed, No Bonus Win 3:23:41 Adjused Calculate Player:true 3:23:41 Adjused Calculate Opponent: true 3:23:41 Gamecheck: true 3:23:41 POST-Trigger done 3:23:41 Player OK?: MMR: true Cap: true Dev.: true 3:23:41 Opponent OK?: MMR: true Cap: true Dev.: true 3:23:41 Player-data-Qualitiy: 100% 3:23:41 Opponent-data-Qualitiy: 100% 3:23:42 OK Uploader: game uploaded 3:23:42 Ladder Game Done! 3:23:42 -------------------------- EDIT: Found a big bug in the rammscanner. Dont know how he got there and why noone mention it before oO But the pretrigger op. failed, alg. b failed but you have 100%? that makes no sense... Can you post the gamelong and the mainlog of 1 100% game? What exactly do you need? Rammscanner? I don't understand what you are saying exactly. I mean, in the spoiler I put up the full log I have of 2 recent games. Here's the complete log I have, but they are 100% player and opponent quality both. here it is again: + Show Spoiler + 2:45:42 MMR-Stats 5.4 2:45:42 --------INIT START-------- 2:45:42 OK File-Encoding UTF-8 2:45:42 OK Loading DB 2:45:44 OK DB up to date! 2:45:44 OK Settings loaded! 2:45:44 OK Gamedata: 547 Games loaded. 2:45:44 OK Ramscanner ready! 2:45:44 OK Triggers ready! 2:45:44 OK Gameobserver: ready! 2:45:45 OK: Program is up to date 2:45:45 --------INIT END-------- 2:46:49 -------------------------- 2:46:49 Game Start detected 2:46:49 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:47:31 Webgrabber: Player true 2:47:31 No Profile, skip 2:47:31 Webgrabber: Opponent false 2:47:31 PRE-Trigger done 2:54:36 Webgrabber: Player true 2:54:39 Webgrabber: Opponent true 2:54:39 DATA Alg.B: failed, No Bonus Win 2:54:39 Adjused Calculate Player:true 2:54:39 Adjused Calculate Opponent: true 2:54:39 Gamecheck: true 2:54:39 POST-Trigger done 2:54:39 Player OK?: MMR: true Cap: true Dev.: true 2:54:39 Opponent OK?: MMR: true Cap: true Dev.: true 2:54:39 Player-data-Qualitiy: 100% 2:54:39 Opponent-data-Qualitiy: 100% 2:54:40 OK Uploader: game uploaded 2:54:40 Ladder Game Done! 2:54:40 -------------------------- 2:54:41 -------------------------- 2:54:41 Game Start detected 2:54:41 ERROR: Cant find Memory-Profile in Active-Profiles! Perhaps its just a custom game... 2:55:24 Webgrabber: Player true 2:55:24 No Profile, skip 2:55:24 Webgrabber: Opponent false 2:55:24 PRE-Trigger done 3:23:38 Webgrabber: Player true 3:23:41 Webgrabber: Opponent true 3:23:41 DATA Alg.B: failed, No Bonus Win 3:23:41 Adjused Calculate Player:true 3:23:41 Adjused Calculate Opponent: true 3:23:41 Gamecheck: true 3:23:41 POST-Trigger done 3:23:41 Player OK?: MMR: true Cap: true Dev.: true 3:23:41 Opponent OK?: MMR: true Cap: true Dev.: true 3:23:41 Player-data-Qualitiy: 100% 3:23:41 Opponent-data-Qualitiy: 100% 3:23:42 OK Uploader: game uploaded 3:23:42 Ladder Game Done! 3:23:42 -------------------------- | ||
skeldark
Germany2223 Posts
August 11 2012 09:27 GMT
#1398
BUT found the mistake ! i forgot to update ramscanner to patch 1.5.1 .... OO update soon Still i dont understand how you could get a 100% game when both algo failed... | ||
Belial88
United States5217 Posts
August 11 2012 09:54 GMT
#1399
gamelog + Show Spoiler + 2:46:49 Ramscanner: name1 : X%EF%BF%BD%01%07%EF%BF%BDg%EF%BF%BD%0F%EF%BF%BD%EF%BF%BD%188%EF%BF%BD%EF%BF%BD%01%07%EF%BF%BD%EF%BF%BDC%0C%02 2:46:49 Ramscanner: id1 : - 2:46:49 Ramscanner: name2 : %60%EF%BF%BD%01%07 2:46:49 Ramscanner: id2 : - 2:54:39 A 12 B -9999 2:54:39 2:54:39 A -9999 B -13 2:54:39 2:54:39 PREPLAYER 1: Data: true Analyse: false MMR: false id: 1584798 playerlink: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ server: US league: master division_name: mar sara alamo Main race: z Game race: unkown gamedate: 8/11/2012 mapname: Daybreak LE totalbonuspool: 720 Wins: 335 Looses: 324 points: 1074 bonus: -47 change_points: -8 adjusted_points: 307 2:54:39 PREPLAYER 2: Data: false Analyse: false MMR: false id: playerlink: server: league: ERROR division_name: ERROR Main race: unkown Game race: unkown gamedate: ERROR mapname: ERROR totalbonuspool: 720 Wins: -9999 Looses: -9999 points: -9999 bonus: -10047 change_points: -9999 adjusted_points: -20766 2:54:39 POSTPLAYER 1: Data: true Analyse: false MMR: true id: 1584798 playerlink: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ server: US league: master division_name: mar sara alamo Main race: z Game race: z gamedate: 8/11/2012 mapname: Cloud Kingdom LE totalbonuspool: 720 Wins: 336 Looses: 324 points: 1087 bonus: -48 change_points: 12 adjusted_points: 319 2:54:39 POSTPLAYER 2: Data: true Analyse: false MMR: true id: 2647855 playerlink: http://us.battle.net/sc2/en/profile/2647855/1/FxAWyolf/ server: US league: master division_name: leviathan mars Main race: z Game race: z gamedate: 8/11/2012 mapname: Cloud Kingdom LE totalbonuspool: 720 Wins: 151 Looses: 150 points: 1081 bonus: -48 change_points: -13 adjusted_points: 313 2:54:39 Dataset: --- GAMESTART --- TIME: 1344668030137 VALID: true Player1_won true --- GAMEEND --- 2:54:41 Ramscanner: name1 : 2:54:41 Ramscanner: id1 : - 2:54:41 Ramscanner: name2 : 2:54:41 Ramscanner: id2 : - 3:23:41 A 9 B -9999 3:23:41 3:23:41 A -9999 B -9 3:23:41 3:23:41 PREPLAYER 1: Data: true Analyse: false MMR: false id: 1584798 playerlink: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ server: US league: master division_name: mar sara alamo Main race: z Game race: unkown gamedate: 8/11/2012 mapname: Cloud Kingdom LE totalbonuspool: 720 Wins: 336 Looses: 324 points: 1087 bonus: -48 change_points: 13 adjusted_points: 319 3:23:41 PREPLAYER 2: Data: false Analyse: false MMR: false id: playerlink: server: league: ERROR division_name: ERROR Main race: unkown Game race: unkown gamedate: ERROR mapname: ERROR totalbonuspool: 720 Wins: -9999 Looses: -9999 points: -9999 bonus: -10047 change_points: -9999 adjusted_points: -20766 3:23:41 POSTPLAYER 1: Data: true Analyse: false MMR: true id: 1584798 playerlink: http://us.battle.net/sc2/en/profile/1584798/1/Belial/ server: US league: master division_name: mar sara alamo Main race: z Game race: z gamedate: 8/11/2012 mapname: Condemned Ridge totalbonuspool: 720 Wins: 337 Looses: 324 points: 1096 bonus: -48 change_points: 9 adjusted_points: 328 3:23:41 POSTPLAYER 2: Data: true Analyse: false MMR: true id: 2028279 playerlink: http://us.battle.net/sc2/en/profile/2028279/1/Compactor/ server: US league: master division_name: mar sara alamo Main race: z Game race: z gamedate: 8/11/2012 mapname: Condemned Ridge totalbonuspool: 720 Wins: 344 Looses: 328 points: 987 bonus: -48 change_points: -9 adjusted_points: 219 3:23:41 Dataset: --- GAMESTART --- TIME: 1344669772326 VALID: true Player1_won true --- GAMEEND --- analyse + Show Spoiler + ANALYSER Gamecount: 544 ------------------------------------------------------------ Opponent Alg.A: Gamecount: 399 Result:master,mar sara alamo, T0 ------------------------------------------------------------ Player Alg.F+: 345: master,praetor uncle, T0 1920 346: master,kelerchian epsilon, T0 1920 347: master,raszagal lambda, T0 1920 348: master,dropship xi, T0 1920 349: master,dylar dixie, T0 1920 350: master,dragoon phi, T-1 0 351: master,ehlna zeta, T-1 0 352: master,leviathan mars, T-1 0 353: master,sarengo gravity, T-1 0 354: master,sarengo gravity, T0 1920 B 355: master,wraith tango, T-2 1920 356: master,nagglfar bravo, T0 1920 357: diamond,dominion pepper, T2 1571 358: master,liberty theta, T0 1920 359: master,shiloh romeo, T-1 0 360: master,dragoon victor, T0 1920 361: master,duran kilo, T-1 0 362: master,warfield nu, T0 1920 363: master,feld indigo , T0 1920 364: master,arbiter gamma, T0 1920 365: master,phash november, T0 1920 366: master,dropship xi, T0 1920 367: master,moria chi, T0 1920 368: diamond,colossus romeo, T-1 0 369: master,liberty theta, T-1 0 370: master,lurker sierra, T0 1920 371: master,colossus epsilon, T0 1920 372: master,raszagal upsilon, T0 1920 373: master,kalathi foxtrot, T0 1920 374: master,ursa echo, T0 1920 375: master,medivac yankee, T0 1920 376: master,felanis rho, T0 1920 377: master,xerana psi, T0 1920 378: master,hellion pi, T0 1920 379: master,scarab oscar, T0 1920 380: master,warfield nu, T0 1920 381: master,feld indigo , T0 1920 382: master,praetor uncle, T-1 0 383: master,ursa echo, T0 1920 384: master,sarengo gravity, T-1 0 385: master,aiur psi, T0 1920 386: master,praetor uncle, T0 1920 387: master,devourer beta, T0 1920 388: master,archon kappa, T0 1920 389: master,aiur rho, T0 1920 390: master,medivac yankee, T0 1920 391: master,liberty theta, T0 1920 392: master,braxis tau, T0 1920 393: master,medivac yankee, T0 1920 394: master,zergling lambda, T0 1920 395: master,zasz upsilon, T0 1920 396: master,brontes charlie, T0 1920 397: master,zergling lambda, T0 1920 398: master,scion alpha, T0 1920 399: master,reaver november, T0 1920 400: master,sarengo gravity, T0 1920 401: master,khala omega, T0 1920 402: master,artanis eta, T0 1920 403: master,wraith tango, T0 1920 404: master,drone zeta, T0 1920 405: master,kagg pi, T0 1920 406: master,prelate beta, T-1 0 407: diamond,error, T-1 0 408: error,error, T-1 0 409: master,error, T-1 0 410: master,error, T-1 0 411: diamond,error, T-1 0 412: master,error, T-1 0 413: master,error, T-1 0 414: master,error, T-1 0 415: master,error, T-1 0 416: master,error, T-1 0 417: master,error, T-1 0 418: master,error, T-1 0 419: master,error, T-1 0 420: master,error, T-1 0 421: diamond,error, T-1 0 422: master,error, T-1 0 423: master,error, T-1 0 424: master,error, T-1 0 425: master,error, T-1 0 426: master,error, T-1 0 427: master,error, T-1 0 428: grandmaster,error, T-1 0 429: master,error, T-1 0 430: master,error, T-1 0 431: master,error, T-1 0 432: master,scion alpha, T0 1920 433: master,ehlna zeta, T0 1920 434: master,dragoon phi, T0 1920 435: master,char quest, T0 1920 436: master,monlyth oscar, T-1 0 437: master,khala omega, T0 1920 438: master,duran kilo, T0 1920 439: master,pylon mu, T0 1920 440: master,kelerchian epsilon, T0 1920 441: master,khala omega, T0 1920 442: master,dropship xi, T0 1920 443: master,scion alpha, T0 1920 444: master,augustgrad phi, T0 1920 445: master,umoja hawk, T0 1920 446: master,scion alpha, T0 1920 447: master,scarab oscar, T0 1920 448: master,devourer beta, T0 1920 449: master,ghost juliet, T0 1920 450: master,siege tank pepper, T0 1920 451: master,khala omega, T0 1920 452: master,raven gravity, T0 1920 453: master,siege tank pepper, T-1 0 454: master,raszagal upsilon, T0 1920 455: master,carrier pi, T0 1920 456: master,shuttle kappa, T0 1920 457: master,liberty theta, T0 1920 458: master,khalis beta, T0 1920 459: master,shuttle kappa, T0 1920 460: master,nagglfar bravo, T0 1920 461: master,dropship omega, T0 1920 462: master,sakai juliet, T0 1920 463: master,khaydarin nu, T0 1920 464: master,artanis eta, T0 1920 465: master,aiur rho, T0 1920 466: master,raszagal lambda, T0 1920 467: master,raszagal lambda, T0 1920 468: master,agria xi, T0 1920 469: master,kalathi foxtrot, T0 1920 470: master,sarengo gravity, T0 1920 471: master,reaver november, T-1 0 472: master,khalis beta, T0 1920 473: master,ghost juliet, T0 1920 474: master,kagg pi, T0 1920 475: platinum,aldaris alamo, T-1 0 476: master,khaydarin nu, T0 1920 477: master,scion alpha, T0 1920 478: master,gantrithor zed , T0 1920 479: master,archon kappa, T0 1920 480: master,mutalisk echo, T0 1920 481: master,praetor uncle, T0 1920 482: master,medivac yankee, T0 1920 483: master,talematros dixie, T0 1920 484: master,medivac yankee, T0 1920 485: master,kagg pi, T0 1920 486: master,khala omega, T0 1920 487: master,reaper romeo, T0 1920 488: master,artanis eta, T0 1920 489: master,nagglfar bravo, T0 1920 490: master,nahaan hawk, T0 1920 491: master,uraj bravo, T0 1920 492: master,ehlna zeta, T0 1920 493: master,leviathan mars, T0 1920 494: master,devourer alpha, T0 1920 495: master,brood lord gamma, T0 1920 496: master,scion alpha, T0 1920 497: master,ghost indigo , T0 1920 498: master,dragoon phi, T0 1920 499: master,dragoon phi, T0 1920 500: master,liberty theta, T0 1920 501: master,wraith tango, T-1 0 502: master,dragoon victor, T0 1920 503: master,brood lord gamma, T0 1920 504: master,umoja pepper, T0 1920 505: master,warfield nu, T0 1920 506: master,sarengo gravity, T-1 0 507: master,ghost juliet, T-1 0 508: master,scarab oscar, T0 1920 509: master,ehlna zeta, T-1 0 510: master,char quest, T0 1920 511: master,wraith tango, T-1 0 512: diamond,colossus omega, T-1 0 513: master,scarab mu, T0 1920 514: master,brontes charlie, T-1 0 515: diamond,sakai phi, T-1 0 516: master,scion alpha, T0 1920 517: master,scion alpha, T0 1920 518: master,dylar dixie, T-1 0 519: master,ultralisk sigma, T0 1920 520: master,siege tank pepper, T0 1920 521: master,reagan nu, T-1 0 522: master,dragoon victor, T0 1920 523: master,drone romeo, T-1 0 524: master,kaloth mars, T-1 0 525: master,mar sara alamo, T0 1920 526: master,corsair zed , T0 1920 527: master,kelerchian epsilon, T-1 0 528: master,moria chi, T0 1920 529: master,liberty theta, T0 1920 530: master,devourer alpha, T-1 0 531: master,devourer alpha, T-1 0 532: master,xerana psi, T-1 0 533: master,xerana psi, T-1 0 534: master,nargil tango, T0 1920 535: master,talematros dixie, T0 1920 536: master,feld indigo , T0 1920 537: master,kagg pi, T-1 0 538: master,umoja pepper, T0 1920 539: master,azimar uncle, T0 1920 540: master,vulture x-ray, T0 1920 541: master,sarengo gravity, T-1 0 542: master,medivac yankee, T0 1920 543: master,leviathan mars, T0 1920 544: master,mar sara alamo, T0 1920 - Alg F summary: I like all games! ![]() Average difference between expected and calculated: 1.16 145: master,leviathan mars, T-1 0 146: master,ultralisk sigma, T0 1920 147: master,corsair zed , T0 1920 148: master,archon kappa, T-1 0 149: master,braxis tau, T0 1920 150: master,kalathi foxtrot, T-1 0 151: master,mohandar omicron, T0 1920 152: master,overlord charlie, T-1 0 153: master,kelerchian epsilon, T-1 0 154: master,aiur psi, T0 1920 155: master,felanis rho, T0 1920 156: master,warfield nu, T0 1920 157: master,warfield nu, T0 1920 158: master,kalathi foxtrot, T0 1920 159: master,drone romeo, T-1 0 160: master,scion alpha, T0 1920 161: master,wraith tango, T-1 0 162: master,reaver november, T0 1920 163: master,dropship xi, T0 1920 164: master,kelerchian epsilon, T-1 0 165: master,ehlna zeta, T0 1920 166: master,artanis eta, T0 1920 167: master,devourer beta, T0 1920 168: master,kalathi foxtrot, T-1 0 169: master,kalathi foxtrot, T-1 0 170: master,artanis eta, T0 1920 171: master,ursa echo, T-1 0 172: master,drone romeo, T0 1920 173: master,artanis eta, T0 1920 174: diamond,routhe beta, T-1 0 175: master,duran x-ray, T-1 0 176: master,nahaan hawk, T-1 0 177: master,brontes charlie, T0 1920 178: master,monlyth oscar, T-1 0 179: master,praetor uncle, T0 1920 180: master,liberty theta, T0 1920 181: master,artanis eta, T0 1920 182: master,dragoon phi, T-1 0 183: master,siege tank pepper, T-1 0 184: master,sarengo gravity, T0 1920 185: master,scion alpha, T0 1920 186: master,scion alpha, T0 1920 187: master,liberty theta, T-1 0 188: master,scarab oscar, T0 1920 189: master,kagg pi, T0 1920 190: master,aiur rho, T-1 0 191: master,wraith tango, T0 1920 192: master,vulture x-ray, T-1 0 193: master,ehlna zeta, T0 1920 194: master,kelerchian epsilon, T-1 0 195: master,mar sara alamo, T-1 0 196: master,warfield nu, T-1 0 197: master,valerian iota, T0 1920 198: master,liberty theta, T0 1920 199: master,ultralisk sigma, T0 1920 200: master,drone romeo, T-1 0 201: master,agria xi, T0 1920 202: master,nagglfar bravo, T0 1920 203: diamond,tyrador echo, T-1 0 204: master,ghost juliet, T-1 0 205: diamond,horner omicron, T-1 0 206: master,praetor uncle, T0 1920 207: master,felanis rho, T0 1920 208: master,shiloh romeo, T-1 0 209: master,sarengo gravity, T0 1920 210: diamond,kerrigan dixie, T-1 0 211: master,reaver november, T0 1920 212: master,zergling lambda, T0 1920 213: master,ghost juliet, T0 1920 214: diamond,sakai zed , T-1 0 215: master,kaloth mars, T0 1920 216: master,kelerchian epsilon, T0 1920 217: master,moria chi, T0 1920 218: master,tarsonis foxtrot, T0 1920 219: master,mutalisk echo, T0 1920 220: master,scion alpha, T-1 0 221: master,gantrithor zed , T0 1920 222: master,dragoon phi, T0 1920 223: master,lurker sierra, T0 1920 224: master,lurker sierra, T0 1920 225: master,leviathan mars, T0 1920 226: master,banshee quest, T0 1920 227: master,dylar lima, T0 1920 228: master,felanis rho, T-1 0 229: master,kagg eta, T0 1920 230: master,shuttle kappa, T0 1920 231: master,nargil tango, T0 1920 232: master,artanis eta, T0 1920 233: master,sarengo gravity, T0 1920 234: master,felanis rho, T0 1920 235: master,artanis eta, T-1 0 236: diamond,changeling victor, T-1 0 237: master,drone romeo, T0 1920 238: master,wraith tango, T-1 0 239: master,mutalisk echo, T0 1920 240: master,dylar lima, T0 1920 241: master,feld indigo , T0 1920 242: master,overmind lima, T0 1920 243: master,kalathi foxtrot, T0 1920 244: master,wraith tango, T0 1920 245: master,dragoon phi, T-1 0 246: master,duran kilo, T0 1920 247: master,umoja hawk, T-1 0 248: master,corsair zed , T-1 0 249: master,gantrithor zed , T-1 0 250: master,mohandar omicron, T0 1920 251: master,feld indigo , T-1 0 252: diamond,taarim omicron, T-1 0 253: diamond,chau sara alamo, T1 1517 254: master,banshee quest, T-1 0 255: master,zeratul delta, T0 1920 256: master,banshee quest, T0 1920 257: master,devourer beta, T0 1920 258: master,artanis eta, T0 1920 259: master,devourer alpha, T0 1920 260: master,devourer alpha, T0 1920 261: master,artanis eta, T0 1920 262: master,nargil tango, T-1 0 263: master,phash november, T0 1920 264: master,warfield nu, T0 1920 265: master,tyrador tau, T0 1920 266: master,raven gravity, T0 1920 267: master,ghost juliet, T0 1920 268: master,devourer beta, T0 1920 269: master,ursa echo, T0 1920 270: master,duran kilo, T-1 0 271: master,feld indigo , T-1 0 272: master,brontes charlie, T0 1920 273: master,khalis beta, T0 1920 B 274: master,devourer alpha, T-2 1920 275: master,zasz upsilon, T-1 0 276: master,dylar dixie, T0 1920 277: master,dropship xi, T0 1920 278: master,augustgrad phi, T0 1920 279: master,sarengo gravity, T0 1920 280: master,warfield alamo, T-1 0 281: master,brontes charlie, T0 1920 282: master,wraith tango, T0 1920 283: master,sarengo gravity, T-1 0 284: master,drone romeo, T-1 0 285: master,scout sierra, T-1 0 286: master,duke juliet, T-1 0 287: master,pylon mu, T-1 0 288: master,archon kappa, T-1 0 289: master,moria chi, T0 1920 290: master,overlord charlie, T0 1920 291: master,scion alpha, T0 1920 292: master,kagg pi, T-1 0 293: master,zeratul theta, T-1 0 294: error,error, T-1 0 295: master,mar sara alamo, T-1 0 296: master,vulture x-ray, T0 1920 297: master,kagg eta, T0 1920 298: master,kagg eta, T0 1920 299: master,aiur psi, T0 1920 300: master,liberty theta, T0 1920 301: error,error, T-1 0 302: master,phash november, T0 1920 303: master,corsair zed , T0 1920 304: master,vulture x-ray, T-1 0 305: master,kaloth mars, T-1 0 306: master,agria xi, T0 1920 307: master,phash november, T0 1920 308: master,scion alpha, T0 1920 309: master,xerana psi, T0 1920 310: master,gantrithor zed , T0 1920 311: master,liberty theta, T0 1920 312: master,scv kilo, T0 1920 313: master,brontes charlie, T0 1920 314: master,scout sierra, T0 1920 315: master,drone zeta, T0 1920 316: master,khalis beta, T0 1920 317: master,duran x-ray, T0 1920 318: master,carrier pi, T-1 0 319: master,tyrador tau, T-1 0 320: master,scout sierra, T0 1920 321: master,ultralisk sigma, T-1 0 322: master,wraith tango, T0 1920 323: master,zeratul delta, T0 1920 324: master,nahaan hawk, T0 1920 325: master,siege tank pepper, T0 1920 326: master,dropship xi, T-1 0 327: master,scarab mu, T-1 0 328: master,wraith tango, T-1 0 329: master,medivac chi, T0 1920 330: master,ursa iota, T0 1920 331: error,error, T-1 0 332: master,azimar uncle, T0 1920 333: master,devourer beta, T-1 0 334: master,zeratul theta, T0 1920 335: master,ursa iota, T0 1920 336: master,carrier pi, T0 1920 337: master,felanis rho, T0 1920 338: master,colossus epsilon, T0 1920 339: master,ghost juliet, T0 1920 340: master,drone romeo, T-1 0 341: error,error, T-1 0 342: master,ghost juliet, T0 1920 343: master,duke juliet, T0 1920 344: master,nahaan hawk, T0 1920 - Alg F summary: Found game-combinations that i dont like! ![]() GameNr : Errormargin 332 : 358.0 334 : 345.0 Average difference between expected and calculated: 3.7 1: master,scion alpha, T0 1920 2: master,kelerchian epsilon, T0 1920 3: master,dragoon phi, T0 1920 4: master,victory victor, T0 1920 5: master,ultralisk sigma, T0 1920 6: master,felanis rho, T0 1920 7: master,medivac chi, T0 1920 8: master,praetor uncle, T0 1920 9: master,scion alpha, T0 1920 10: master,overmind lima, T0 1920 11: master,agria xi, T0 1920 12: master,nargil tango, T0 1920 13: master,medivac yankee, T0 1920 14: master,warbringer delta, T0 1920 15: master,dragoon victor, T0 1920 16: master,aiur rho, T0 1920 17: master,dragoon victor, T0 1920 18: master,tyrador tau, T0 1920 19: master,braxis tau, T-1 0 20: master,azimar whiskey, T0 1920 21: master,zasz upsilon, T0 1920 22: master,vulture x-ray, T-1 0 23: master,duke juliet, T0 1920 24: master,felanis rho, T0 1920 25: master,ursa echo, T-1 0 26: master,nahaan hawk, T0 1920 27: master,monlyth oscar, T0 1920 28: master,umoja hawk, T0 1920 29: master,zergling lambda, T0 1920 30: master,xerana psi, T0 1920 31: master,scarab oscar, T0 1920 32: master,lurker sierra, T0 1920 33: master,drone zeta, T0 1920 34: master,wraith tango, T0 1920 35: master,shiloh romeo, T0 1920 36: master,kelerchian epsilon, T0 1920 37: master,sarengo gravity, T0 1920 38: master,artanis eta, T0 1920 39: master,duran kilo, T0 1920 40: master,tyrador tau, T0 1920 41: master,medivac yankee, T0 1920 42: master,arbiter gamma, T0 1920 43: master,duran x-ray, T0 1920 44: master,khala omega, T0 1920 45: master,braxis tau, T0 1920 46: master,azimar whiskey, T0 1920 47: master,raszagal upsilon, T0 1920 48: master,moria chi, T0 1920 49: master,augustgrad phi, T0 1920 50: master,nagglfar bravo, T0 1920 51: master,gantrithor zed , T0 1920 52: master,uraj omicron, T0 1920 53: master,devourer beta, T0 1920 54: master,dropship xi, T0 1920 55: master,artanis eta, T0 1920 56: master,raszagal upsilon, T0 1920 57: master,xerana psi, T0 1920 58: master,scarab oscar, T0 1920 59: master,reagan nu, T0 1920 60: master,umoja hawk, T0 1920 61: master,mar sara alamo, T0 1920 62: master,artanis eta, T0 1920 63: master,victory victor, T0 1920 64: master,duran x-ray, T0 1920 65: master,duke juliet, T0 1920 66: master,moria chi, T0 1920 67: master,kelerchian epsilon, T0 1920 68: master,ultralisk sigma, T0 1920 69: master,uraj omicron, T0 1920 70: master,ehlna zeta, T0 1920 71: master,ehlna zeta, T0 1920 B 72: master,mutalisk echo, T-2 1920 73: master,hydralisk sigma, T0 1920 74: master,mutalisk echo, T0 1920 75: master,zergling lambda, T0 1920 76: diamond,colossus romeo, T-1 0 77: master,mutalisk echo, T-1 0 78: master,mohandar omicron, T-1 0 79: master,nahaan hawk, T0 1920 80: master,kelerchian epsilon, T0 1920 81: master,zasz upsilon, T0 1920 82: master,archon kappa, T0 1920 83: master,reaver november, T0 1920 84: master,raszagal upsilon, T-1 0 85: master,raszagal upsilon, T0 1920 86: master,drone zeta, T0 1920 87: master,ultralisk sigma, T0 1920 88: master,braxis tau, T0 1920 89: master,kalathi foxtrot, T0 1920 90: master,agria xi, T0 1920 91: master,siege tank pepper, T0 1920 92: master,pylon mu, T0 1920 93: master,adun whiskey, T0 1920 94: master,kagg eta, T0 1920 95: master,drone romeo, T0 1920 96: master,vulture x-ray, T0 1920 97: master,arbiter gamma, T0 1920 98: diamond,dominion kilo, T-1 0 99: master,kelerchian epsilon, T0 1920 100: master,monlyth oscar, T0 1920 101: master,lurker sierra, T0 1920 102: master,moria chi, T0 1920 103: master,adun whiskey, T0 1920 104: master,mar sara alamo, T0 1920 105: master,agria xi, T0 1920 106: master,wraith tango, T-1 0 107: master,scout sierra, T0 1920 108: master,nagglfar bravo, T0 1920 109: master,corsair zed , T0 1920 110: diamond,shiloh gravity, T5 1733 111: master,scarab oscar, T0 1920 112: master,liberty theta, T0 1920 113: master,wraith tango, T0 1920 114: master,scion alpha, T-1 0 115: master,medivac yankee, T0 1920 116: master,ehlna zeta, T0 1920 117: master,ehlna zeta, T0 1920 118: master,banshee quest, T0 1920 119: master,aiur rho, T0 1920 120: master,dropship xi, T0 1920 121: diamond,queen bravo, T3 1625 122: master,colossus epsilon, T0 1920 123: master,mutalisk echo, T0 1920 124: master,scarab oscar, T0 1920 125: master,kelerchian epsilon, T0 1920 126: master,liberty theta, T0 1920 127: master,raszagal lambda, T0 1920 128: master,nagglfar bravo, T0 1920 129: master,agria xi, T0 1920 130: master,adun whiskey, T0 1920 131: master,moria chi, T0 1920 132: master,lurker sierra, T0 1920 133: master,nargil tango, T-1 0 134: master,aiur rho, T0 1920 135: master,xerana psi, T0 1920 136: master,medivac chi, T0 1920 137: master,tarsonis foxtrot, T-1 0 138: master,moria chi, T0 1920 139: master,kalathi foxtrot, T0 1920 140: master,duran kilo, T0 1920 141: master,dropship xi, T0 1920 142: master,aiur psi, T0 1920 143: master,scout sierra, T0 1920 144: master,braxis tau, T0 1920 - Alg F summary: I like all games! ![]() Average difference between expected and calculated: 1.11 ------------------------------------------------------------ Player-finetuneing Alg.G: Avg dif :10.277574 Game: 2 Correction: 1 Game: 4 Correction: 4 Game: 6 Correction: -31 Game: 7 Correction: 2 Game: 8 Correction: -15 Game: 9 Correction: 5 Game: 13 Correction: 2 Game: 16 Correction: -1 Game: 17 Correction: 5 Game: 21 Correction: -18 Game: 24 Correction: 8 Game: 27 Correction: 4 Game: 29 Correction: 4 Game: 32 Correction: 6 Game: 34 Correction: 15 Game: 35 Correction: -39 Game: 36 Correction: 6 Game: 38 Correction: -2 Game: 41 Correction: -11 Game: 42 Correction: 11 Game: 44 Correction: -6 Game: 46 Correction: -2 Game: 47 Correction: 6 Game: 49 Correction: -19 Game: 51 Correction: 14 Game: 54 Correction: 2 Game: 60 Correction: -4 Game: 61 Correction: 13 Game: 63 Correction: -2 Game: 66 Correction: 4 Game: 68 Correction: -3 Game: 69 Correction: 4 Game: 73 Correction: -15 Game: 79 Correction: 5 Game: 82 Correction: -1 Game: 85 Correction: 4 Game: 87 Correction: -7 Game: 88 Correction: 10 Game: 89 Correction: -13 Game: 91 Correction: -9 Game: 94 Correction: -23 Game: 96 Correction: 10 Game: 99 Correction: 15 Game: 102 Correction: 4 Game: 107 Correction: 2 Game: 108 Correction: -4 Game: 109 Correction: 13 Game: 111 Correction: 4 Game: 115 Correction: 6 Game: 118 Correction: -1 Game: 120 Correction: 1 Game: 122 Correction: 8 Game: 124 Correction: 6 Game: 125 Correction: -17 Game: 127 Correction: -14 Game: 128 Correction: 2 Game: 130 Correction: 11 Game: 131 Correction: -8 Game: 138 Correction: -19 Game: 139 Correction: 1 Game: 140 Correction: -20 Game: 142 Correction: 1 Game: 144 Correction: 9 Game: 147 Correction: -4 Game: 156 Correction: 15 Game: 158 Correction: -6 Game: 163 Correction: -10 Game: 166 Correction: -1 Game: 180 Correction: 13 Game: 181 Correction: -7 Game: 186 Correction: -4 Game: 216 Correction: -7 Game: 218 Correction: -8 Game: 222 Correction: 8 Game: 226 Correction: -7 Game: 231 Correction: -3 Game: 233 Correction: -12 Game: 234 Correction: 10 Game: 240 Correction: -15 Game: 242 Correction: -5 Game: 244 Correction: 14 Game: 257 Correction: -5 Game: 259 Correction: 1 Game: 261 Correction: -20 Game: 264 Correction: 2 Game: 266 Correction: -30 Game: 268 Correction: 9 Game: 269 Correction: -5 Game: 273 Correction: 4 Game: 276 Correction: 7 Game: 281 Correction: 2 Game: 289 Correction: 10 Game: 297 Correction: -1 Game: 299 Correction: -3 Game: 302 Correction: -7 Game: 306 Correction: 2 Game: 307 Correction: -14 Game: 308 Correction: 6 Game: 311 Correction: -3 Game: 313 Correction: 2 Game: 315 Correction: -17 Game: 323 Correction: -9 Game: 324 Correction: 8 Game: 329 Correction: -6 Game: 335 Correction: -21 Game: 337 Correction: 5 Game: 342 Correction: -3 Game: 343 Correction: 12 Game: 346 Correction: 14 Game: 347 Correction: -13 Game: 348 Correction: 13 Game: 356 Correction: -2 Game: 357 Correction: 5 Game: 362 Correction: -4 Game: 365 Correction: 3 Game: 370 Correction: -1 Game: 372 Correction: 13 Game: 374 Correction: 9 Game: 375 Correction: -4 Game: 377 Correction: -5 Game: 378 Correction: 4 Game: 380 Correction: 2 Game: 385 Correction: -3 Game: 388 Correction: -10 Game: 390 Correction: -8 Game: 394 Correction: -2 Game: 396 Correction: -2 Game: 398 Correction: 5 Game: 400 Correction: -2 Game: 403 Correction: 14 Game: 404 Correction: -4 Game: 432 Correction: -13 Game: 433 Correction: 6 Game: 438 Correction: 13 Game: 439 Correction: -6 Game: 440 Correction: 11 Game: 441 Correction: -14 Game: 442 Correction: 9 Game: 443 Correction: -3 Game: 444 Correction: 11 Game: 445 Correction: -1 Game: 446 Correction: 4 Game: 447 Correction: -4 Game: 449 Correction: 5 Game: 456 Correction: 5 Game: 459 Correction: -3 Game: 462 Correction: 4 Game: 463 Correction: -15 Game: 464 Correction: 8 Game: 469 Correction: -8 Game: 476 Correction: -11 Game: 477 Correction: 15 Game: 479 Correction: -2 Game: 480 Correction: 5 Game: 482 Correction: 1 Game: 483 Correction: -6 Game: 484 Correction: 11 Game: 487 Correction: -19 Game: 488 Correction: 5 Game: 490 Correction: 17 Game: 491 Correction: -14 Game: 492 Correction: 9 Game: 494 Correction: 1 Game: 495 Correction: -9 Game: 496 Correction: 2 Game: 497 Correction: -3 Game: 499 Correction: 4 Game: 502 Correction: 9 Game: 528 Correction: -14 Game: 534 Correction: 11 Game: 538 Correction: 14 Game: 539 Correction: -13 Game: 542 Correction: -13 Game: 543 Correction: 6 Avg dif after finetune :5.1525736 ------------------------------------------------------------ Opponent Alg.A After: Gamecount: 399 Result:master,mar sara alamo, T0 So everything is fine on my end, its just a software issue? | ||
skeldark
Germany2223 Posts
August 11 2012 10:23 GMT
#1400
2:54:39 2:54:39 A -9999 B -13 you were just lucky when a failed b did the job and other way round^^ i upload patch in 20 min EDIT: 5.5 OUT | ||
| ||
![]() StarCraft 2 StarCraft: Brood War Dota 2 League of Legends Counter-Strike Other Games Organizations
StarCraft 2 • practicex StarCraft: Brood War![]() • v1n1z1o ![]() • AfreecaTV YouTube • intothetv ![]() • Kozan • IndyKCrew ![]() • LaughNgamezSOOP • Laughngamez YouTube • Migwel ![]() • sooper7s League of Legends |
CranKy Ducklings
WardiTV Invitational
herO vs ByuN
TBD vs Zoun
Classic vs GuMiho
TBD vs Cure
SHIN vs ShoWTimE
SKillous vs Bunny
Epic.LAN
[BSL 2025] Weekly
Replay Cast
Sparkling Tuna Cup
WardiTV Invitational
Replay Cast
Clem vs Zoun
Replay Cast
SOOP
[ Show More ] Tenacious Turtle Tussle
The PondCast
Replay Cast
Korean StarCraft League
|
|