Quote from: vince on February 21, 2023, 11:12:22 AMbeen a long time sence i played around with this arcade, i seen somewhere that jv sold it or something,
Quote from: vince on February 21, 2023, 11:12:22 AMdoes it still work like it use to
Quote from: vince on February 21, 2023, 11:12:22 AMdo you have to pay and do you still need a free code to use it
Quote from: phum on January 14, 2023, 12:15:07 PMOk. So I seemed to have fixed the save game for Clumsy Bird on my site (maybe it is only a Clumsy Bird issue???) Here is what I did: commented out the first line of code in saveGameSmf() that tries to grab the 'savegamescore' field. I don't see this field existing in any code anywhere in Clumsy Bird, and it seems to be getting passed in as a parameter. So is this a bug?function saveGameSmf(newhighscore)
{
//var newhighscore = document.getElementById('savegamescore').innerHTML;
var gameSmfFullscreen = document.getElementById("gameSmfFullscreen") != undefined ? document.getElementById("gameSmfFullscreen").value : 0;
if (parseInt(gameSmfFullscreen) == 1)
...
function saveGameSmf(newhighscore)
{
//var newhighscore = document.getElementById('savegamescore').innerHTML;
var gameSmfFullscreen = document.getElementById("gameSmfFullscreen") != undefined ? document.getElementById("gameSmfFullscreen").value : 0;
if (parseInt(gameSmfFullscreen) == 1)
...