0% found this document useful (0 votes)
179 views2 pages

Hacker2 0

The document describes the Immortal Client v7.8, a user script for the bloxd.io game that includes over 50 features. It allows customization of various in-game displays such as key displays, FPS, and health indicators, and includes performance enhancements. The script is available for download and is licensed under MIT.

Uploaded by

jingyi.zhu.0303
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
179 views2 pages

Hacker2 0

The document describes the Immortal Client v7.8, a user script for the bloxd.io game that includes over 50 features. It allows customization of various in-game displays such as key displays, FPS, and health indicators, and includes performance enhancements. The script is available for download and is licensed under MIT.

Uploaded by

jingyi.zhu.0303
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

// ==UserScript==

// @name Immortal Client v7.8 – Ultimate Edition


// @namespace http://tampermonkey.net/
// @version 7.8
// @description The complete bloxd.io client with 50+ features
// @author IMMORTAL_DEMON_999
// @match https://bloxd.io/
// @grant none
// @license MIT
// @downloadURL https://update.greasyfork.org/scripts/538040/Immortal%20Client
%20v78%20%E2%80%93%20Ultimate%20Edition.user.js
// @updateURL https://update.greasyfork.org/scripts/538040/Immortal%20Client
%20v78%20%E2%80%93%20Ultimate%20Edition.meta.js
// ==/UserScript==

(function() {
'use strict';

const defaultConfig = {
showKeyDisplay: true,
showMovementKeys: true,
showMouseButtons: true,
showSpecialKeys: true,
showFPS: true,
showCPS: true,
showCoords: true,
showDirection: true,
showBiome: true,
showTime: true,
showSpeed: true,
showPing: true,
showHealth: true,
showHunger: true,
fpsBoost: true,
optimizeRendering: true,
autoTool: true,
customCrosshair: true,
glowingHotbar: true,
hudPosition: 'bottom-left',
hudScale: 1.0,
hudOpacity: 0.8,
hudColor: '#ff0000',
textColor: '#ffffff'
};

let config = JSON.parse(JSON.stringify(defaultConfig));

function loadConfig() {
const saved = localStorage.getItem('immortalConfig');
if (saved) {
try {
Object.assign(config, JSON.parse(saved));
} catch (e) {
console.error('Config load failed', e);
}
}
}

function saveConfig() {

You might also like