2022-10-01 02:46:36 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2022-10-04 10:15:49 +00:00
|
|
|
<title>Minecraft</title>
|
|
|
|
<link rel="icon" href="favicon.ico">
|
2022-10-01 02:46:36 +00:00
|
|
|
<meta charset="UTF-8" />
|
2022-10-04 07:29:31 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /
|
2024-06-23 08:47:58 +00:00
|
|
|
<meta name="description" content="Minecraft Java版の1.5.2をブラウザで無料でプレイできます。U5KUNによって日本語訳され、日本の方でも手軽にプレイできるようになりました。学校のchromebookなどのブラウザも含め、ほとんどのブラウザでプレイ可能です。拡張機能は必要ありません。シングルプレイ、マルチプレイの両方に対応しています。また、サーバーを立てなくてもマルチプレイができます。" />
|
2022-10-04 07:29:31 +00:00
|
|
|
<meta name="keywords" content="minecraft, eaglercraft, singleplayer, applet, replit, browser, html5, javascript, chromebook, lax1dude, games, eagler, japanese, マイクラ, 日本語, クロームブック, 学校, イーグル, クラフト, イーグルクラフト, マインクラフト, ブラウザ, HTML, web, ウェブ, オンライン, Java Edition, ダウンロード不要, Unblocked games, 1.5.2, サーバー, マルチプレイ、 本物, 無料, シングルプレイ" />
|
2022-10-01 02:46:36 +00:00
|
|
|
<meta name="author" content="lax1dude" />
|
|
|
|
<meta property="og:title" content="Eaglercraft" />
|
|
|
|
<meta property="og:locale" content="en-US" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<!-- Change this: <meta property="og:image" content="https://media.discordapp.net/attachments/378764518081429506/932053915061587978/thumbnail2.png" /> -->
|
2024-06-23 08:47:58 +00:00
|
|
|
<meta property="og:description" content="Minecraft Java版の1.5.2をブラウザで無料でプレイできます。U5KUNによって日本語訳され、日本の方でも手軽にプレイできるようになりました。学校のchromebookなどのブラウザも含め、ほとんどのブラウザでプレイ可能です。拡張機能は必要ありません。シングルプレイ、マルチプレイ両方の両方に対応しています。また、サーバーを立てなくてもマルチプレイができます。" />
|
2022-10-01 02:46:36 +00:00
|
|
|
<!-- Change this: <meta property="og:url" content="https://g.eags.us/eaglercraft/" /> -->
|
|
|
|
<script type="text/javascript" src="classes.js"></script>
|
|
|
|
<script type="text/javascript" src="eagswebrtc.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
if(document.location.href.startsWith("file:")) {
|
2022-10-04 07:29:31 +00:00
|
|
|
alert("このHTMLファイルはブラウザで直接'開く'ことはできません。あなたのHTTPサーバーにアップロードしてアクセスしてプレイできます。バグではありません。付属のドキュメントを参照してください。");
|
2022-10-01 02:46:36 +00:00
|
|
|
}else {
|
|
|
|
window.addEventListener("load", function(){
|
|
|
|
const relayId = Math.floor(Math.random() * 3);
|
|
|
|
window.eaglercraftOpts = {
|
|
|
|
container: "game_frame", assetsURI: "assets.epk", serverWorkerURI: "worker_bootstrap.js", worldsFolder: "MAIN",
|
|
|
|
servers: [
|
2024-06-23 08:47:58 +00:00
|
|
|
{ serverName: "ArchMC(最高のミニゲームサーバー)", serverAddress: "wss://mc.arch.lol/", hideAddress: false },
|
|
|
|
{ serverName: "Asspixel(ラグいミニゲームサーバー)", serverAddress: "wss://web.asspixel.net/CAPixel/", hideAddress: false },
|
2022-10-04 07:29:31 +00:00
|
|
|
{ serverName: "Aeon(The Pitがあるよ!)", serverAddress: "wss://aeon.megatkc.repl.co/", hideAddress: false }
|
2022-10-01 02:46:36 +00:00
|
|
|
],
|
|
|
|
relays: [
|
|
|
|
{ addr: "wss://relay.deev.is/", name: "lax1dude relay #1", primary: relayId == 0 },
|
|
|
|
{ addr: "wss://relay.lax1dude.net/", name: "lax1dude relay #2", primary: relayId == 1 },
|
|
|
|
{ addr: "wss://relay.shhnowisnottheti.me/", name: "ayunami relay #1", primary: relayId == 2 }
|
|
|
|
],
|
|
|
|
mainMenu: { splashes: [
|
2022-10-04 07:29:31 +00:00
|
|
|
"Translated by U5KUN!!",
|
|
|
|
"U5KUNが翻訳!!"
|
|
|
|
], eaglerLogo: true }};
|
2022-10-01 02:46:36 +00: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();
|
|
|
|
});}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body style="margin:0px;width:100vw;height:100vh;" id="game_frame">
|
|
|
|
</body>
|
2022-10-04 07:29:31 +00:00
|
|
|
</html>
|