2022-01-19 08:48:00 +01:00
<!DOCTYPE html>
2020-09-02 02:52:13 +02:00
< html >
< head >
< title > eagler< / title >
< script type = "text/javascript" src = "classes.js" > < / script >
< script type = "text/javascript" >
2022-04-10 08:06:43 +02:00
if(document.location.href.startsWith("file:")) {
alert("You're not supposed to 'open' this file in your browser. Please upload this folder to your HTTP(s) server and access it via the internet. This is not a bug, please read the documentation");
}else {
2022-04-01 05:03:46 +02:00
window.addEventListener("load", function(){
window.minecraftOpts = [
2020-09-02 02:52:13 +02:00
"game_frame","assets.epk",
2022-04-16 07:57:38 +02:00
"CgAACQAHc2VydmVycwoAAAABCAACaXAAIHdzKHMpOi8vIChhZGRyZXNzIGhlcmUpOihwb3J0KSAvCAAEbmFtZQAIdGVtcGxhdGUBAAtoaWRlQWRkcmVzcwEIAApmb3JjZWRNT1REABl0aGlzIGlzIG5vdCBhIHJlYWwgc2VydmVyAAA="
2022-04-01 05:03:46 +02:00
];
(function(){
var q = window.location.search;
if(typeof q === 'string' & & q.startsWith("?")) {
q = new URLSearchParams(q);
var s = q.get("server");
if(s) window.minecraftOpts.push(s);
}
})();
main();
2022-04-10 08:06:43 +02:00
});}
2020-09-02 02:52:13 +02:00
< / script >
< / head >
< body style = "margin:0px;width:100vw;height:100vh;" id = "game_frame" >
< / body >
< / html >