Quote:
Originally Posted by Andreas
** No guarantees **
In Plugin vBookie: Show Events in Showthread
PHP Code:
$decimal_odds = (float)$outcomes[$i]['odds_against']/(float)$outcomes[$i]['odds_for'];
PHP Code:
$outcome['odds_decimal'] = sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for']));
In vbookie.php (each bit might appear multiple times)
PHP Code:
$decimal_odds = (float)$outcomes[$i]['odds_against']/(float)$outcomes[$i]['odds_for'];
PHP Code:
$bet['odds_decimal'] = sprintf("%0.2f", ((float)$bet['bet_odds_against']/(float)$bet['bet_odds_for']));
PHP Code:
$outcomes[$i]['odds_decimal'] = sprintf("%0.2f", ((float)$outcomes[$i]['odds_against']/(float)$outcomes[$i]['odds_for']));
Add 1 to all those bits.
|
It worked!!!
Thanks so much for your time..... I really appreciate it!