Designed to be easy for less advanced players! These shouldn't be hard, so we try and ease the setup needed.
Anyone can view, modify and redistribute the source code. If you have privacy concerns or curiosity, you can ensure yourself that the code is not doing anything malicious.
Suggested features are always being considered and sometimes added.
To use it you need to have NodeJS 16 or above installed for HybrProxy to build correctly.
Linux, MacOS, and Windows can use 16+.
This is a pre-release version and may contain bugs, as it's still being worked on.
Clone the repository on your machine using
$ git clone https://github.com/HybrisMC/HybrProxy
Once the repo is downloaded move to the directory and install the dependencies
$ cd HybrProxy
$ npm install
You can now build the project, you will be able to use the exe file located in the dist
folder. Or use the npm start
command to directly run the compiled TypeScript
$ npm run build
At the root of the project rename config.example.jsonc
to config.jsonc
. It should contain the following:
{
"apiKey": "API KEY HERE", // To get an api key, head to https://developer.hypixel.net/ and log in with your Hypixel Forums Account.
// (NOTE: You need to create an app on the website. We suggest using the personal option. After that, you can click create API key and enter that here)
"server": {
// Change this to the server you are trying to connect, by default it will be set as hypixel.
// (NOTE: Most other servers will not work)
"host": "hypixel.net",
"port": 25565
},
"dashboard": {
// Whether to enable the app-dashboard for HybrProxy.
"enabled": true
},
"proxyPort": 25556, // The port for the proxy, you can connect using "localhost:PORT" as the Server IP
"customEmotes": {
// Custom emojis you can add, you can use any symbols minecraft chat supports.
// Reference: https://justpaste.it/8mnld
":solar:": "☀",
":lunar:": "☾"
},
"checkForUpdates": true, // Whether to automatically check for updates and inform you if there are any.
"autoDownloadUpdates": true, // Whether to automatically download new updates.
"statistics": true, // Whether to track statistics about how you use hybris (launches, online usage, etc.).
"modules": {},
"settings": {}
}
$ npm start
Go to HybrProxy/dashboard/dist
. You should then see the specific package for the operating system you built HybrProxy on. It will end with exe
/AppImage
/dmg
(dmg
will be inside a directory which starts with the word "mac"). Run the file and HybrProxy will automatically start running!
You will still need console for issues within the code to either report or solve yourself.
HybrProxy supports the following arguments:
--config=/path/to/config.json(c)
: Use a custom config file (default config file isconfig.jsonc
orconfig.json
in the current working directory)--noTray
: Disable the tray icon (auto disabled if on a Mac and using the dashboard)
When you login with a new account for the first time you will see a console message like this:
Please login to Microsoft to continue! Go to "https://www.microsoft.com/link" and enter the code XXXXXXXX to authenticate!
Open a browser and login with your Microsoft account.
If you want to contribute features, please make a fork
of the repository.
See the credits in CREDITS.md.