Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Okay, does anybody have a way to embed a Buildism game?
#1
Like in HTML?
Reply
#2
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&amp;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.
Reply
#3
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>
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)