Adrian Schneider
01-22-2005, 03:43 AM
I really hate php :(
Anyway, if someone can tell me why this won't work (everything works except the $probability) In cases where it should obviously spit out something like 50 (50% chance) it spits out 0.95834583.
<?php
////////////////////////////////////////////////////////
// MySQL & Form Setup //////////////////////////////////
////////////////////////////////////////////////////////
$connection = mysql_connect("localhost", "##CENSORED##", "##CENSORED##");
mysql_select_db("##CENSORED##_vbulletin");
$winner = $_POST['winner'];
$loser = $_POST['loser'];
$winnerq = mysql_query("SELECT `user`.`rating` FROM user WHERE username = '$winner' LIMIT 1");
$loserq = mysql_query("SELECT `user`.`rating` FROM user WHERE username = '$loser' LIMIT 1");
$winnerr = mysql_fetch_array($winnerq);
$loserr = mysql_fetch_array($loserq);
/////////////////////////////////////////////////////////
// Difference Determination /////////////////////////////
/////////////////////////////////////////////////////////
if ($winnerr[rating] > $loserr[rating])
{
$difference = $winnerr[rating] - $loserr[rating];
}
if ($winnerr[rating] < $loserr[rating])
{
$difference = $loserr[rating] - $winnerr[rating];
}
if ($winnerr[rating] == $loserr[rating])
{
$difference = 0;
}
////////////////////////////////////////////////////////
// Probability Determination ///////////////////////////
////////////////////////////////////////////////////////
$probability = 1/(1+10^($difference/400));
////////////////////////////////////////////////////////
// Winner K Determination //////////////////////////////
////////////////////////////////////////////////////////
if ($winnerr[rating] < 1300)
{
$wK = 50;
}
if ($winnerr[rating] > 1300 AND $winnerr[rating] < 1500)
{
$wK = 30;
}
if ($winnerr[rating] > 1500)
{
$wK = 20;
}
////////////////////////////////////////////////////////
// Loser K Determination ///////////////////////////////
////////////////////////////////////////////////////////
if ($loserr[rating] < 1300)
{
$lK = 50;
}
if ($loserr[rating] > 1300 AND $loserr[rating] < 1500)
{
$lK = 30;
}
if ($loserr[rating] > 1500)
{
$lK = 20;
}
/////////////////////////////////////////////////////////
// Modify by How Much ///////////////////////////////////
/////////////////////////////////////////////////////////
$winneradd = $wK * 1-$probability;
$losersub = $lK * $probability;
$winnernew = round($winnerr[rating] + $winneradd, 0);
$losernew = round($loserr[rating] - $losersub, 0);
/////////////////////////////////////////////////////////
// Update Rating ////////////////////////////////////////
/////////////////////////////////////////////////////////
$updatewinner = mysql_query("UPDATE user SET rating='$winnernew' WHERE username='$winner'");
$updateloser = mysql_query("UPDATE user SET rating='$losernew' WHERE username='$loser'");
/////////////////////////////////////////////////////////
// Test Variables (Diagnostics) /////////////////////////
/////////////////////////////////////////////////////////
echo
"$winner score has been changed from $winnerr[rating] to $winnernew <BR>
$loser score has been changed from $loserr[rating] to $losernew <BR>
Rating difference is $difference <BR>
The probability of winning was $probability";
?>
Edit: by the way the formula this is based off of (Blizzards) can be viewed here: http://www.starcraftdream.com/forums/league.php?do=scoring.
Anyway, if someone can tell me why this won't work (everything works except the $probability) In cases where it should obviously spit out something like 50 (50% chance) it spits out 0.95834583.
<?php
////////////////////////////////////////////////////////
// MySQL & Form Setup //////////////////////////////////
////////////////////////////////////////////////////////
$connection = mysql_connect("localhost", "##CENSORED##", "##CENSORED##");
mysql_select_db("##CENSORED##_vbulletin");
$winner = $_POST['winner'];
$loser = $_POST['loser'];
$winnerq = mysql_query("SELECT `user`.`rating` FROM user WHERE username = '$winner' LIMIT 1");
$loserq = mysql_query("SELECT `user`.`rating` FROM user WHERE username = '$loser' LIMIT 1");
$winnerr = mysql_fetch_array($winnerq);
$loserr = mysql_fetch_array($loserq);
/////////////////////////////////////////////////////////
// Difference Determination /////////////////////////////
/////////////////////////////////////////////////////////
if ($winnerr[rating] > $loserr[rating])
{
$difference = $winnerr[rating] - $loserr[rating];
}
if ($winnerr[rating] < $loserr[rating])
{
$difference = $loserr[rating] - $winnerr[rating];
}
if ($winnerr[rating] == $loserr[rating])
{
$difference = 0;
}
////////////////////////////////////////////////////////
// Probability Determination ///////////////////////////
////////////////////////////////////////////////////////
$probability = 1/(1+10^($difference/400));
////////////////////////////////////////////////////////
// Winner K Determination //////////////////////////////
////////////////////////////////////////////////////////
if ($winnerr[rating] < 1300)
{
$wK = 50;
}
if ($winnerr[rating] > 1300 AND $winnerr[rating] < 1500)
{
$wK = 30;
}
if ($winnerr[rating] > 1500)
{
$wK = 20;
}
////////////////////////////////////////////////////////
// Loser K Determination ///////////////////////////////
////////////////////////////////////////////////////////
if ($loserr[rating] < 1300)
{
$lK = 50;
}
if ($loserr[rating] > 1300 AND $loserr[rating] < 1500)
{
$lK = 30;
}
if ($loserr[rating] > 1500)
{
$lK = 20;
}
/////////////////////////////////////////////////////////
// Modify by How Much ///////////////////////////////////
/////////////////////////////////////////////////////////
$winneradd = $wK * 1-$probability;
$losersub = $lK * $probability;
$winnernew = round($winnerr[rating] + $winneradd, 0);
$losernew = round($loserr[rating] - $losersub, 0);
/////////////////////////////////////////////////////////
// Update Rating ////////////////////////////////////////
/////////////////////////////////////////////////////////
$updatewinner = mysql_query("UPDATE user SET rating='$winnernew' WHERE username='$winner'");
$updateloser = mysql_query("UPDATE user SET rating='$losernew' WHERE username='$loser'");
/////////////////////////////////////////////////////////
// Test Variables (Diagnostics) /////////////////////////
/////////////////////////////////////////////////////////
echo
"$winner score has been changed from $winnerr[rating] to $winnernew <BR>
$loser score has been changed from $loserr[rating] to $losernew <BR>
Rating difference is $difference <BR>
The probability of winning was $probability";
?>
Edit: by the way the formula this is based off of (Blizzards) can be viewed here: http://www.starcraftdream.com/forums/league.php?do=scoring.