Say I want to modify what appears in the Arcade window.

Started by silverhawk79, September 08, 2010, 05:51:49 PM

Previous topic - Next topic

silverhawk79

I'm using E-Arcade Beta4-SMF2, which is pretty similar to the SMF Arcade. What I want to do is create a sort of parallel arcade that plays Java games. What would I replace to achieve this? It's got me stumped.

Basically, I want all this to load instead of the Flash game.

<?php
$s
= array(
'24592',   // 0  24K
'32784',   // 1  32K
'40976',   // 2  40K
'49168',   // 3  48K
'65552',   // 4  64K
'81936',   // 5  80K
'98320',   // 6  96K
'131088',  // 7  128K
'163856',  // 8  160K
'196624',  // 9  192K
'262160',  // 10 256K
'393232',  // 11 384K
'524304',  // 12 512K
'655376',  // 13 640K
'786448',  // 14 768K
);
include(
"nfesloader.php");
if(
is_numeric( $_GET['s'] ) )
$i = $_GET['s'];
else
if(
$_GET['s'] == -1 )
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<style type="text/css">
p.serif{font-family:"Times New Roman",Times,serif;}
p.sansserif{font-family:Arial,Helvetica,sans-serif;}
}
</style>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>NFES</title>
</head>

<body>
<center>
<table>
<tr>
<td>
<applet archive="vNES_213.jar" code="vNES.class" height="480" width="512">
<param name="rom" value="<?php echo $_GET['id']; ?>">
<param name="romsize" value="<?php echo $s[$i]; ?>">
<param name="sound" value="on">
<param name="scale" value="on">
</applet>
</td>
</tr>
</table><br><br><p class = sansserif>
<a href="http://www.nsfcd.com?index.php">Done playing?</a>
</center>
</body>

</html>

Advertisement: