Cyricx
01-05-2007, 04:54 PM
Okay, so there has been a problem with this integration.
basically the points are deducted for playing the game, but no points awarded for a jackpot.
It appears the issue is caused by ibproarcades code.
I was able to fix this problem by editting the arcade.php and changing this
$vbversion = substr($vboptions[templateversion],0,3);
if ($vbversion != "3.0")
{
($hook = vBulletinHook::fetch_hook('ibproarcade_new_champ') ) ? eval($hook) : false;
}
To this
// $vbversion = substr($vboptions[templateversion],0,3);
// if ($vbversion != "3.0")
// {
($hook = vBulletinHook::fetch_hook('ibproarcade_new_champ') ) ? eval($hook) : false;
// }
Being that I'm running vb3.6 the if statement is not needed for me at all.
It was definately disabling that hook though and causing the issue.
basically the points are deducted for playing the game, but no points awarded for a jackpot.
It appears the issue is caused by ibproarcades code.
I was able to fix this problem by editting the arcade.php and changing this
$vbversion = substr($vboptions[templateversion],0,3);
if ($vbversion != "3.0")
{
($hook = vBulletinHook::fetch_hook('ibproarcade_new_champ') ) ? eval($hook) : false;
}
To this
// $vbversion = substr($vboptions[templateversion],0,3);
// if ($vbversion != "3.0")
// {
($hook = vBulletinHook::fetch_hook('ibproarcade_new_champ') ) ? eval($hook) : false;
// }
Being that I'm running vb3.6 the if statement is not needed for me at all.
It was definately disabling that hook though and causing the issue.