generated from abhinavs/moonwalk
-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae2a737
commit 6eb42af
Showing
80 changed files
with
204,766 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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,76 @@ | ||
<!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.8 in your browser! This is EaglercraftX, created by LAX1DUDE and ayunami2000" /> | ||
<meta name="keywords" content="eaglercraft, eaglercraftx, minecraft, 1.8, 1.8.8" /> | ||
<title>EaglercraftX 1.8.8 | Ludos</title> | ||
<meta property="og:locale" content="en-US" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:title" content="EaglercraftX 1.8.8" /> | ||
<meta property="og:description" content="Play Minecraft 1.8.8 in your browser! This is EaglercraftX, created by LAX1DUDE and ayunami2000" /> | ||
<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 { | ||
const relayId = Math.floor(Math.random() * 3); | ||
window.eaglercraftXOpts = { | ||
container: "game_frame", | ||
assetsURI: "assets.epk", | ||
localesURI: "lang/", | ||
servers: [ | ||
{ | ||
addr: "wss://mc.theludos.com/", | ||
name: "Myth's EagMP" | ||
}, | ||
{ | ||
addr: "wss://proxy.theludos.com/", | ||
name: "Myth's EaglerProxy" | ||
} | ||
], | ||
"relays": [ | ||
{ | ||
"addr": "wss://relay.theludos.com/", | ||
"comment": "Myth's EaglerRelay", | ||
"primary": true | ||
}, | ||
{ | ||
"addr": "wss://relay.deev.is/", | ||
"comment": "LAX1DUDE's Shared World Relay #1", | ||
"primary": false | ||
}, | ||
{ | ||
"addr": "wss://relay.lax1dude.net/", | ||
"comment": "LAX1DUDE's Shared World Relay #2", | ||
"primary": false | ||
}, | ||
{ | ||
"addr": "wss://relay.shhnowisnottheti.me/", | ||
"comment": "ayunami's Public Relay", | ||
"primary": false | ||
} | ||
] | ||
}; | ||
|
||
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> |
Oops, something went wrong.