EaglerForge based on eaglercraft u35
Go to file
Oliver Anderson 025ddfae2b
actually fix it this time
2024-04-01 17:17:23 +00:00
.github/ISSUE_TEMPLATE fix typo 2024-02-16 11:26:10 +03:30
ExampleMods Create blink.js 2024-03-11 23:27:39 +03:30
buildtools u24 2024-03-06 12:55:44 +03:30
gateway u24 2024-03-06 12:55:44 +03:30
mcp918 upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
patches v1.3 2024-03-26 10:21:08 +03:30
sources actually fix it this time 2024-04-01 17:17:23 +00:00
.gitattributes upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
.gitignore u23 + drawstringwithshadow() 2024-02-20 09:58:56 +03:30
CODE_OF_CONDUCT.md Update CODE_OF_CONDUCT.md 2024-02-15 21:48:17 -08:00
CREDITS Update CREDITS 2024-03-12 15:37:59 +03:30
CompileLatestClient.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
CompileLatestClient.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
LICENSE upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
README.md remove version bc i dont wanna update it every time 2024-03-10 15:44:29 +03:30
build_clean_tmp.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_clean_tmp.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_help.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_help.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_init.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_init.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_pullrequest.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_pullrequest.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_unpatched.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_unpatched.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_workspace.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_workspace.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_merge_direct.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_merge_direct.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_merge_pullrequest.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_merge_pullrequest.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_test_pullrequest.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_test_pullrequest.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
client_version womp womp 2024-03-11 17:10:59 +00:00
gateway_version upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
run_chmod.sh upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30

README.md

EaglerForge

Play Minecraft 1.8 in your browser, supports singleplayer and multiplayer with a javascript modding API

EaglercraftX 1.8 Screenshot Main Menu

EaglerForge mods menu screenshot

305109047-1985db59-ed58-4c6c-84cf-51c3ff996fa9

This repository contains:

  • Utilities to decompile Minecraft 1.8 and apply patch files to it
  • Source code to provide the LWJGL keyboard, mouse, and OpenGL APIs in a browser
  • Patch files to mod the Minecraft 1.8 source code to make it browser-compatible
  • Browser-modified portions of Minecraft 1.8's open-source dependencies
  • Plugins for Minecraft servers to allow the Eagler client to connect to them
  • a javascript modding API

This repository does NOT contain:

  • Any portion of the decompiled Minecraft 1.8 source code or resources
  • Any portion of Mod Coder Pack and its config files
  • Data that can be used alone to reconstruct portions of the game's source code
  • Software configured by default to allow users to play without owning a copy of Minecraft

Getting Started:

To compile the latest version of the client, on Windows:

  1. Make sure you have at least Java 11 installed and added to your PATH
  2. Download (clone) this repository to your computer
  3. Double click CompileLatestClient.bat, a GUI resembling a classic Windows installer should open
  4. Follow the steps shown to you in the new window to finish compiling

To compile the latest version of the client, on Linux/macOS:

  1. Make sure you have at least Java 11 installed
  2. Download (clone) this repository to your computer
  3. Open a terminal in the folder the repository was cloned to
  4. Type chmod +x CompileLatestClient.sh and hit enter
  5. Type ./CompileLatestClient.sh and hit enter, a GUI resembling a classic Windows installer should open
  6. Follow the steps shown to you in the new window to finish compiling

Launch Options

The EaglercraftX 1.8 client is configured primarily through a variable called window.eaglercraftXOpts that must be set before the client starts up.

The default eaglercraftXOpts values are this:

const relayId = Math.floor(Math.random() * 3);
window.eaglercraftXOpts = {
    demoMode: false,
    container: "game_frame",
    assetsURI: "assets.epk",
    localesURI: "lang/",
    worldsDB: "worlds",
    servers: [
        { addr: "ws://localhost:8081/", name: "Local test server" }
    ],
    relays: [
        { addr: "wss://relay.deev.is/", comment: "lax1dude relay #1", primary: relayId == 0 },
        { addr: "wss://relay.lax1dude.net/", comment: "lax1dude relay #2", primary: relayId == 1 },
        { addr: "wss://relay.shhnowisnottheti.me/", comment: "ayunami relay #1", primary: relayId == 2 }
    ]
};

List of available options

  • container: the ID of the HTML element to create the canvas in (required)
  • assetsURI: the URL of the assets.epk file (required)
  • localesURI: the URL where extra .lang files can be found
  • worldsDB: the name of the IndexedDB database to store worlds in
  • demoMode: whether to launch the game in Java edition demo mode
  • servers: a list of default servers to display on the Multiplayer screen
  • relays: the default list of shared world relays to use for invites
  • checkShaderGLErrors: enables more verbose OpenGL error logging for the shaders
  • enableDownloadOfflineButton: whether to show a "Download Offline" button on the title screen
  • downloadOfflineButtonLink: overrides the download link for the "Download Offline" button
  • html5CursorSupport: enables support for showing the CSS "pointer" cursor over buttons
  • allowUpdateSvc: enables the certificate-based update system
  • allowUpdateDL: allows the client to download new updates it finds
  • logInvalidCerts: print update certificates with invalid signatures to console
  • enableSignatureBadge: shows a badge on the title screen indicating if the digital signature is valid
  • checkRelaysForUpdates: proprietary feature used in offline downloads
  • mods a list of mods you want to load into the game when it launches