Hi @antoineh
what i have to calculate the goal bonus is
// check for goal bonus
if ( ($score[‘full’] === 0 and $score[‘toto’] === 0) and $score_vars[‘home’] == $score_vars[‘user_home’] ) {
$score[‘score’] += $score_vars[‘goal’];
}
else
if ( ($score[‘full’] === 0 and $score[‘toto’] === 0) and $score_vars[‘away’] == $score_vars[‘user_away’] ) {
$score[‘score’] += $score_vars[‘goal’];
}`