Found a minor bug with ibparcade.php, in the modules folder. Since it treats latest scores as strings, it prints them in scientific notation (1.97e+6), if they're too large. To fix this display issue, find the following code:
Code:
$phrase = $phrase1;
and past the following BEFORE it:
Code:
$score['score'] += 0;
This will print your arcade's latest score in full numeric form.
Enjoy!