MyBB Community Forums

Full Version: Game Section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there something I'm missing? I've upgraded to the newest version the high scores and all the new games I added are GONE. Please help.
I said it already in your PMs: When you deactivate your plugin, the database is deleted.
are the only games currently supported (from ibparcade.com) are 2.0 version?
hi about 3.3 and 3.0? it seems it never saves the score, for anything with gamedata already included with the dowload.

is there a way to fix it?
Thanks!
Since 1.1.1, its supported, but you must to upload all the gamedata files. When you add the scores manually, be sure that you upload your gamedata files then in arcade/gamedata/[name of the game]
when i try to upload the gamedata, it uploads some, but on otheres it says, "your forgot something".
or am i supposed to upload them though my ftp? manually?

and what doy ou mean, when you add the scores manually? how can i do that?
I mean games Wink

It's because you upload a file that has no content (0 bytes), I go make in 1.2 a function to make a file. Now, you can do this:

Open admin/games.php and find:
		if(!isset($mybb->input['name']) || intval($_FILES['data']['size']) == 0)
		{
			cpredirect("games.php?".SID."&action=gamedata&name=".$name, $lang->noinput);
		}

Replace with:
		if(!isset($mybb->input['name']))
		{
			cpredirect("games.php?".SID."&action=gamedata&name=".$name, $lang->noinput);
		}
I'm getting the "You forgot something!" error after trying to submit scores.
Are you using 1.1.3? Is it a IBProArcade game?
Yes to both.
Are you sure you added all the gamedata in the correct place (arcade/gamedata/[gamename])