EaglerForge based on eaglercraft u35
Go to file
Leah Anderson 08b546db8b
Update CREDITS.txt
2024-08-29 18:31:42 -06:00
.github/ISSUE_TEMPLATE fix typo 2024-02-16 11:26:10 +03:30
ExampleMods Create IRCchat.js 2024-08-25 18:52:09 +03:30
NoReflect Add beta modloader 2024-08-01 19:28:34 +08:00
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 u35 2024-08-10 09:05:47 -06:00
sources Update CREDITS.txt 2024-08-29 18:31:42 -06: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-08-29 18:30:28 -06:00
CompileLatestClient.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
CompileLatestClient.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
LICENSE upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
README.md Update README.md 2024-08-10 11:04:23 -05:00
build_clean_tmp.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_clean_tmp.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_help.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_help.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_init.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_init.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_make_pullrequest.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_pullrequest.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_make_unpatched.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_unpatched.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_make_workspace.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_make_workspace.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_merge_direct.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_merge_direct.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_merge_pullrequest.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_merge_pullrequest.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
build_test_pullrequest.bat upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
build_test_pullrequest.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00
client_version dementia 2024-05-17 07:24:00 -06:00
gateway_version upload eaglercraft u22 source (DO NOT SHARE)) 2024-02-10 10:21:14 +03:30
run_chmod.sh add Java Mod GUI 2024-08-01 11:46:39 -06:00

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:

NOTE - In order to compile this repo you MUST own a genuine copy of Minecraft: Java Edition

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