edit the
vBookie: Show Events in Showthread plugin, search for
PHP Code:
$outcome['odds_decimal'] = sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for']));
replace with
PHP Code:
$outcome['odds_decimal'] = sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for'])+1);
then edit the
vbookie_outcomebits_nobet and
vbookie_outcomebits temapltes and search for
HTML Code:
<td class="{vb:raw bgclass}" align="right"> ({vb:raw outcome.odds_decimal}) </td>
and change to
HTML Code:
<td class="{vb:raw bgclass}" align="right"> (${vb:raw outcome.odds_decimal}) </td>