Make sure you upload the following files:
". $shortname ."1.gif -> /images/arcade/". $shortname ."1.gif
". $shortname ."2.gif -> /images/arcade/". $shortname ."2.gif
". $shortname .".swf -> /games/". $shortname .".swf
". $secondary_swf_filename .".swf -> /games/". $secondary_swf_filename .".swf
Click on \"Install $title\" to begin the installation."); } else { print_description_row("This script will install $title for your v3 Arcade.
Make sure you upload the following files:
". $shortname ."1.gif -> /images/arcade/". $shortname ."1.gif
". $shortname ."2.gif -> /images/arcade/". $shortname ."2.gif
". $shortname .".swf -> /games/". $shortname .".swf
Click on \"Install $title\" to begin the installation."); } print_submit_row("Install $title", 0); } else { print_form_header('". $shortname .".game', 'uninstall'); print_table_header("v3 Arcade - $title UNINSTALL"); if ($secondary_swf_exist == "YES") { print_description_row("This script will uninstall $title for your v3 Arcade.
Make sure you delete the following files:
". $shortname ."1.gif -> /images/arcade/". $shortname ."1.gif
". $shortname ."2.gif -> /images/arcade/". $shortname ."2.gif
". $shortname .".swf -> /games/". $shortname .".swf
". $secondary_swf_filename .".swf -> /games/". $secondary_swf_filename .".swf
Once you click to uninstall, there is no going back. So make sure that is what you want to do. You will lose all existing scores and time played in the specified game. You do not need to uninstall to upgrade a game. Simply overwrite the .swf file in your games folder.
Click on \"Uninstall $title\" to begin the removal."); } else { print_description_row("This script will uninstall $title for your v3 Arcade.
Make sure you delete the following files:
". $shortname ."1.gif -> /images/arcade/". $shortname ."1.gif
". $shortname ."2.gif -> /images/arcade/". $shortname ."2.gif
". $shortname .".swf -> /games/". $shortname .".swf
Once you click to uninstall, there is no going back. So make sure that is what you want to do. You will lose all existing scores and time played in the specified game. You do not need to uninstall to upgrade a game. Simply overwrite the .swf file in your games folder.
Click on \"Uninstall $title\" to begin the removal."); } print_submit_row("Uninstall $title", 0); } } // ############################################################################# // action step if ($_POST['do'] == "install") { $DB_site->query("INSERT INTO " . TABLE_PREFIX . "games (shortname, gameid, title, descr, file, width, height, miniimage, stdimage, gamesettings, highscorerid, highscore) VALUES ('$shortname', NULL, '$title', '$description', '$shortname.swf', '$game_width', '$game_height', '". $shortname ."2.gif', '". $shortname ."1.gif', 29, NULL, NULL)"); if ($report_install == "YES") { $DB_site->query(" INSERT INTO " . TABLE_PREFIX . "gamenews (newstext,newstype,datestamp) VALUES ('New Game Installed: $title','newgame'," . TIMENOW . ") "); } print_form_header('". $shortname .".game', ''); print_table_header("v3 Arcade - INSTALL $title"); print_description_row("Installation Complete! (PLEASE DELETE THIS FILE.)"); } if ($_POST['do'] == "uninstall") { $gameexists2 = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "gamechallenges WHERE game='$shortname'"); $gameexists3 = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "gamesessions WHERE gamename='$shortname'"); $DB_site->query("DELETE FROM " . TABLE_PREFIX . "games where shortname='$shortname'"); $DB_site->query("DELETE FROM " . TABLE_PREFIX . "gamenews where newstext='New Game Installed: $title'"); if ($DB_site->num_rows($gameexists2)!=0) { $DB_site->query("DELETE FROM " . TABLE_PREFIX . "gamechallenges where game='$shortname'"); } if ($DB_site->num_rows($gameexists3)!=0) { $DB_site->query("DELETE FROM " . TABLE_PREFIX . "gamesessions where gamename='$shortname'"); } if ($report_uninstall == "YES") { $DB_site->query(" INSERT INTO " . TABLE_PREFIX . "gamenews (newstext,newstype,datestamp) VALUES ('Game Removed: $title','newgame'," . TIMENOW . ") "); } print_form_header('". $shortname .".game', ''); print_table_header("v3 Arcade - UNINSTALL $title"); print_description_row("Removal Complete! (PLEASE DELETE THIS FILE.)"); } /*======================================================================*\ || #################################################################### || || # v3Arcade Game Installer/Uninstaller - version 3 - April 21, 2004 # || || #################################################################### || \*======================================================================*/ ?>