-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Eaglercraft 1.8.9 so we can revive again lol
- Loading branch information
Showing
7 changed files
with
32,155 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |