Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSquidTempura authored May 18, 2023
0 parents commit 50d6a1f
Show file tree
Hide file tree
Showing 8 changed files with 94,648 additions and 0 deletions.
31,560 changes: 31,560 additions & 0 deletions EaglercraftX_1.8_Offline_International.html

Large diffs are not rendered by default.

31,560 changes: 31,560 additions & 0 deletions EaglercraftX_1.8_Offline_en_US.html

Large diffs are not rendered by default.

Binary file added assets.epk
Binary file not shown.
31,418 changes: 31,418 additions & 0 deletions classes.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions classes.js.map

Large diffs are not rendered by default.

Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 54 additions & 0 deletions fix-webm-duration.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Play minecraft 1.8 in your browser" />
<meta name="keywords" content="eaglercraft, eaglercraftx, minecraft, 1.8, 1.8.8" />
<title>Squid Craft 1.8.8</title>
<meta property="og:locale" content="ja-JP" />
<meta property="og:type" content="website" />
<meta property="og:title" content="KairunCraft 1.8.8" />
<meta property="og:description" content="Play minecraft 1.8 in your browser" />
<meta property="og:image" content="favicon.png" />
<link type="image/png" rel="shortcut icon" href="favicon.png" />
<script type="text/javascript" src="classes.js"></script>
<script type="text/javascript" src="fix-webm-duration.js"></script>
<script type="text/javascript">
"use strict";
window.addEventListener("load", () => {
if(document.location.href.startsWith("file:")) {
alert("HTTP please, do not open this file locally, run a local HTTP server and load it via HTTP");
}else {

// %%%%%%%%% launch options %%%%%%%%%%%%

window.eaglercraftXOpts = {
container: "game_frame",
assetsURI: "assets.epk",
localesURI: "lang/",
servers: [
{
addr:"wss://mc.arch.lol/",
name: "McArch"
}
]
};

// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

var q = window.location.search;
if(typeof q === "string" && q.startsWith("?")) {
q = new URLSearchParams(q);
var s = q.get("server");
if(s) window.eaglercraftXOpts.joinServer = s;
}

main();

}
});
</script>
</head>
<body style="margin:0px;width:100vw;height:100vh;overflow:hidden;" id="game_frame">
</body>
</html>

0 comments on commit 50d6a1f

Please sign in to comment.