Footers
<script>
var game = new Array();
game[game.length]=["Tanks","550","400","http://www.freeonlinegames.com/embed.php?g_id=1926"];
game[game.length]=["Battle Arena","600","450","http://www.freeonlinegames.com/embed.php?g_id=2817"];
game[game.length]=["NAME","WIDTH","HEIGHT","URL"];
var loc = window.location.href.split("/index.php")[0];
if(location.href.match(/action=arcade/i)){
//Created by Agent Moose (smcodes.smfforfree3.com)
$("td[width='180'] table tbody tr:contains(Menu)").next().children("td").children("span").append("<br><br><a href='"+loc+"/index.php?action=games'>Want more Games?</a><br>");
};
if(location.href.match("action=games")){
document.title = "Games";
$("#bodyarea").hide();
$("#bodyarea").after("<br><br><div class='tborder'><div class='catbg' style='padding: 6px; vertical-align: middle; text-align: center; '>Pick a Game</div><div id='upshrinkHeaderIC'><table border='0' width='100%' cellspacing='1' cellpadding='4' class='bordercolor'><tr><td class='windowbg2' width='100%'><center><span id='GameLinks'></span></center></td></tr></table></div></div><br><div id='GameTable' style=' display:none;'><div class='tborder'><div class='catbg' style='padding: 6px; vertical-align: middle; text-align: center;'><span id='title'></span></div><div><table border='0' width='100%' cellspacing='1' cellpadding='4' class='bordercolor'><tr><td class='windowbg2' width='100%'><center><span id='the_game'></span></center></td></tr></table></div></div></div><br>");
};
for(x=0;x<game.length;x++){
$("#GameLinks").append(" [<a href='javascript:Gamers("+x+")'>"+game[x][0]+"</a>] ");
};
for(x=0;x<game.length;x++){
function Gamers(x){
document.title = game[x][0];
$("#title").html(game[x][0]);
$("#GameTable").show();
$("#the_game").html("<iframe width='"+game[x][1]+"' height='"+game[x][2]+"' src='"+game[x][3]+"' frameborder='0' scrolling='no'></iframe>");
};};
</script>
Original Request: http://smcodes.smfforfree3.com/index.php/topic,449.0.htmlNAME = The Name of the game.
WIDTH = The Width of the game.
HEIGHT = The Height of the game.
URL = The URL of the game.
You can get to the page by going to the arcade, and clicking on the link in the menu.
There are two games already in there, you may take them out if you wish.
To add more games, add more of these lines:
game[game.length]=["NAME","WIDTH","HEIGHT","URL"];
Enjoy
