Skip to content

Commit

Permalink
Add Eaglercraft 1.8.9 so we can revive again lol
Browse files Browse the repository at this point in the history
  • Loading branch information
AR-DEV-1 authored Sep 1, 2024
1 parent 6adb664 commit 3bbd0b5
Show file tree
Hide file tree
Showing 7 changed files with 32,155 additions and 22 deletions.
695 changes: 674 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Eaglercraft-1.8.9
# 1.8.9
**New Eaglercraft 1.8.9 Client! Reborn after old 1.8.9 got DMCA'd :(**

# WAIT! Mojang, if you are willing to violently DMCA this, please read BtPlayzX's message on this website: https://github.com/EaglerDevs/Dear-Mojang-via-Eaglercraft/tree/master
Binary file added assets.epk
Binary file not shown.
31,382 changes: 31,382 additions & 0 deletions classes.js

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.

41 changes: 41 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!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.9 in your browser" />
<meta name="keywords" content="eaglercraft, eaglercraftx, minecraft, 1.8, 1.8.9" />
<title>EaglercraftX 1.8.9</title>
<meta property="og:locale" content="en-US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="EaglercraftX 1.8.9" />
<meta property="og:description" content="Play minecraft 1.8.9 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">
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 {
window.eaglercraftXOpts = {
container: "game_frame",
assetsURI: "assets.epk",
localesURI: "lang/",
servers: [
{ addr: "wss://sus.shhnowisnottheti.me", name: "Ayunboom" },
{ addr: "wss://aeon-network.net/1.8", name: "Aeon" },
{ addr: "wss://beta.vanillacraftsmp.org/", name: "VanillaCraft" },
{ addr: "wss://mc.sealcentral.co", name: "SealCraft" },
{ addr: "wss://g.deev.is/eaglerx-reference", name: "Reference Implementation" }
]
};
main();
}
});
</script>
</head>
<body style="margin:0px;width:100vw;height:100vh;overflow:hidden;" id="game_frame">
</body>
</html>

0 comments on commit 3bbd0b5

Please sign in to comment.