07-25-2011, 05:54 PM
Like in HTML?
Okay, does anybody have a way to embed a Buildism game?
|
07-25-2011, 05:54 PM
Like in HTML?
Hmm,
there might be a way... Brb, I'll do some h4xing xD [lua]<applet code="net.buildism.launcher.UpdaterApplet" codebase="buildism.net/game/" archive="BuildismLauncher.jar" width="800" height="600"> <param name="options" value="[user id] [user name] [idk what this is, some hash] play false http://buildism.net/game/join.php?mode=play&id=[game id]"><param name="urls" value="http://buildism.net/game/Buildism.jar|http://buildism.net/game/lib/resources.jar|http://buildism.net/game/lib/jsyntaxpane-0.9.5-b29.jar"> <param name="java_arguments" value="-Xms512m -Xmx1024m"> <param name="separate_jvm" value="true"> <param name="name" value="Buildism"> <param name="boxbgcolor" value="#d9ebed"> </applet>[/lua] There where it says 'params' and it has the '[user id]' etc. you have to replace those with the stuff you want.
07-27-2011, 04:23 PM
Well you could use an iframe like:
<iframe src="http://buildism.net/game.php?id=ID&play" border="none"></iframe> Or if your feel that iframes are stupid for whatever reason: <div id="Buildism_player"></div> <script type="text/javascript"> Http = new XMLHttpRequest(); Http.onreadystatechange = function(){document.getElementById("Buildism_player").innerHTML=Http.responseText;;}; Http.open("GET", "http://buildism.net/game.php?id=ID&play", true); Http.send(null); </script> |
« Next Oldest | Next Newest »
|