Skip to content

Instantly share code, notes, and snippets.

@MPThLee
Last active October 5, 2024 00:48
Show Gist options
  • Save MPThLee/3ccb554b9d882abc6313330e38e5dfaa to your computer and use it in GitHub Desktop.
Save MPThLee/3ccb554b9d882abc6313330e38e5dfaa to your computer and use it in GitHub Desktop.
This code doesn't work anymore. I just decided to remove this code. You can check working code on comments.
/**
* !!!! This code doesn't work anymore !!!!
*
* - You can check working code on comments. I won't update this code anymore.
*
* Also, I just decided to remove this code. You can check revisions for old code.
* Since this code was made for discord client that almost 5 years ago, It seems like doesn't work anymore.
* I don't want people keep arguing in the comments, i decided to remove this code.
*
* Note: This code is now fulfilled with Javascript comments. This code won't work even if you pasted to console. doesn't do anything.
* Reference: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#comments
**/
// Older gist description: Enable Discord Developer Menus in any environment except mobile app without BetterDiscord using Console.
@acendvgnt
Copy link

acendvgnt commented Dec 16, 2022

The line having issues is this one oldGetUser = usermod.exports.default.__proto__.getCurrentUser;

The code outright crashes discord now.

this should work (simply changed hasFlag to isStaff)

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);
mod = Object.values(wpRequire.c).find(x => typeof x?.exports?.Z?.isDeveloper !== "undefined");
usermod = Object.values(wpRequire.c).find(x => x?.exports?.default?.getUsers)
nodes = Object.values(mod.exports.Z._dispatcher._actionHandlers._dependencyGraph.nodes)
try {
    nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({user: {flags: 1}})
} catch (e) {}
oldGetUser = usermod.exports.default.__proto__.getCurrentUser;
usermod.exports.default.__proto__.getCurrentUser = () => ({isStaff: () => true})
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["CONNECTION_OPEN"]()
usermod.exports.default.__proto__.getCurrentUser = oldGetUser

@Aholicknight
Copy link

this should work (simply changed hasFlag to isStaff)

@acendvgnt yup you are right, simply changing hasFlag to isStaff makes the plugin work again. Thank you!

@Pierre2004
Copy link

Pierre2004 commented Jan 7, 2023

Excusez moi vous avez le code pour créer un plugin ? Merci
Sur Betterdiscord il apparaît pas :(

@Aholicknight
Copy link

Excusez moi vous avez le code pour créer un plugin ? Merci
Sur Betterdiscord il apparaît pas :(

@PierreLGBT maybe if you ask in English

@catb0x
Copy link

catb0x commented Jan 18, 2023

Excusez moi vous avez le code pour créer un plugin ? Merci
Sur Betterdiscord il apparaît pas :(

@PierreLGBT maybe if you ask in English

i dont speak french but i speak spanish i think they want code to make this a bd plugin

@Fedox-die-Ente
Copy link

can anyone make that into a betterdc plugin

@Aholicknight
Copy link

Excusez moi vous avez le code pour créer un plugin ? Merci
Sur Betterdiscord il apparaît pas :(

@PierreLGBT maybe if you ask in English

i dont speak french but i speak spanish i think they want code to make this a bd plugin

@catb0x yes you are correct :)

@TymonKinneas
Copy link

discord is messing around with user state modifications (impersonation). this should work for build 168435 and up

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);
mod = Object.values(wpRequire.c).find(x => typeof x?.exports?.Z?.isDeveloper !== "undefined");
usermod = Object.values(wpRequire.c).find(x => x?.exports?.default?.getUsers)
nodes = Object.values(mod.exports.Z._dispatcher._actionHandlers._dependencyGraph.nodes)
try {
    nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({user: {flags: 1}})
} catch (e) {}
oldGetUser = usermod.exports.default.__proto__.getNonImpersonatedCurrentUser;
usermod.exports.default.__proto__.getNonImpersonatedCurrentUser= () => ({isStaff: () => true})
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["CONNECTION_OPEN"]()
usermod.exports.default.__proto__.getNonImpersonatedCurrentUser= oldGetUser

It seems like it stopped working as of the newest update.

@acendvgnt
Copy link

It seems like it stopped working as of the newest update.

yea i just deleted it XD

@diyar2137237243
Copy link

diyar2137237243 commented Jan 21, 2023

YOO NO IT STILL WORKS FOR ME LOL IT SEEMS TO BE UNPATCHED SO YALL SHOULD STILL USE IT!!!

window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);
mod = Object.values(wpRequire.c).find(x => typeof x?.exports?.Z?.isDeveloper !== "undefined");
usermod = Object.values(wpRequire.c).find(x => x?.exports?.default?.getUsers)
nodes = Object.values(mod.exports.Z._dispatcher._actionHandlers._dependencyGraph.nodes)
try {
    nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({user: {flags: 1}})
} catch (e) {}
oldGetUser = usermod.exports.default.__proto__.getCurrentUser;
usermod.exports.default.__proto__.getCurrentUser = () => ({isStaff: () => true})
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["CONNECTION_OPEN"]()
usermod.exports.default.__proto__.getCurrentUser = oldGetUser

@acendvgnt
Copy link

this should work in all cases

webpackChunkdiscord_app.push([[0], {}, (e) => { module = Object.values(e.c).find(x => x?.exports?.default?.getUsers).exports.default; }]);
nodes = Object.values(module._dispatcher._actionHandlers._dependencyGraph.nodes);
try { nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({ user: { flags: 1 } }); } catch (e) { }
original = [module.getCurrentUser, module.getNonImpersonatedCurrentUser];
module.getCurrentUser = module.getNonImpersonatedCurrentUser = () => ({ isStaff: () => true });
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["OVERLAY_INITIALIZE"]();
[module.getCurrentUser, module.getNonImpersonatedCurrentUser] = original;

@diyar2137237243
Copy link

oh btw the script I sent is old and it worked for me because I wasn't on the latest, acendvgnt posted a new one but I don't want to risk losing discord experiments to test it so yeah gl guys

@Kat2090
Copy link

Kat2090 commented Jan 24, 2023

Works.

@FirstViktor
Copy link

is there a way to make it so you dont have to run it each time you start discord

@acendvgnt
Copy link

is there a way to make it so you dont have to run it each time you start discord

not really but you can automate the process on the web version of Discord by using Tampermonkey or some other userscript extension

@Maple38
Copy link

Maple38 commented Feb 13, 2023

Here is a BetterDiscord plugin for it:

/**
 * @name Experiments
 * @author Maple38
 * @description Enables access to experiments and staff-only options for normal users.
 * @version 1.0.0
 */

let wpRequire

module.exports = class Experiments {
    load() {}

    start = () => {
        
        window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);
        let mod = Object.values(wpRequire.c).find(x => typeof x?.exports?.Z?.isDeveloper !== "undefined");
        let usermod = Object.values(wpRequire.c).find(x => x?.exports?.default?.getUsers)
        let nodes = Object.values(mod.exports.Z._dispatcher._actionHandlers._dependencyGraph.nodes)
        try {
            nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({user: {flags: 1}})
        } catch (e) {}
        let oldGetUser = usermod.exports.default.__proto__.getCurrentUser;
        usermod.exports.default.__proto__.getCurrentUser = () => ({isStaff: () => true})
        nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["CONNECTION_OPEN"]()
        usermod.exports.default.__proto__.getCurrentUser = oldGetUser
    }

    stop = () => {}
}

Put that into a BetterDiscord plugin and it should work. I simply turned the already working code to do it into a plugin that runs when you run Discord. I do not know any Javascript, so I probably won't be able to fix any issues you may have with it. Despite not knowing any Javascript, I somehow got this to work with the power of imagination and spending an hour assaulting my keyboard to fix errors.

If you don't know how to turn it into a plugin, just download this and put it in your plugins folder, which you can find by pressing Windows + R and typing %APPDATA%\BetterDiscord\plugins.

@senttohxll
Copy link

this should work in all cases

webpackChunkdiscord_app.push([[0], {}, (e) => { module = Object.values(e.c).find(x => x?.exports?.default?.getUsers).exports.default; }]);
nodes = Object.values(module._dispatcher._actionHandlers._dependencyGraph.nodes);
try { nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({ user: { flags: 1 } }); } catch (e) { }
original = [module.getCurrentUser, module.getNonImpersonatedCurrentUser];
module.getCurrentUser = module.getNonImpersonatedCurrentUser = () => ({ isStaff: () => true });
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["OVERLAY_INITIALIZE"]();
[module.getCurrentUser, module.getNonImpersonatedCurrentUser] = original;

works, thanks.

@CreepsoOff
Copy link

this should work in all cases

webpackChunkdiscord_app.push([[0], {}, (e) => { module = Object.values(e.c).find(x => x?.exports?.default?.getUsers).exports.default; }]);
nodes = Object.values(module._dispatcher._actionHandlers._dependencyGraph.nodes);
try { nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({ user: { flags: 1 } }); } catch (e) { }
original = [module.getCurrentUser, module.getNonImpersonatedCurrentUser];
module.getCurrentUser = module.getNonImpersonatedCurrentUser = () => ({ isStaff: () => true });
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["OVERLAY_INITIALIZE"]();
[module.getCurrentUser, module.getNonImpersonatedCurrentUser] = original;

I can confirm this works on stable at the date of 14/02/2023

@FirstViktor
Copy link

is it dangerous to use experiments on my main?

@tenent007963
Copy link

is it dangerous to use experiments on my main?

If you have any doubts, then you better don't do any of it, since its clearly against the T&C of Discord if you do so. There are people claiming Discord "knows everything" but it's likely only Discord's internal staff will know the exact answer (or someone who decided to investigate it).

this should work in all cases

webpackChunkdiscord_app.push([[0], {}, (e) => { module = Object.values(e.c).find(x => x?.exports?.default?.getUsers).exports.default; }]);
nodes = Object.values(module._dispatcher._actionHandlers._dependencyGraph.nodes);
try { nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({ user: { flags: 1 } }); } catch (e) { }
original = [module.getCurrentUser, module.getNonImpersonatedCurrentUser];
module.getCurrentUser = module.getNonImpersonatedCurrentUser = () => ({ isStaff: () => true });
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["OVERLAY_INITIALIZE"]();
[module.getCurrentUser, module.getNonImpersonatedCurrentUser] = original;

Also vouch for the code, working as expected for now

@senttohxll
Copy link

is it dangerous to use experiments on my main?

Nope. If you read the code, there’s nothing that it can do to steal your account. Also it’s not against tos

@senttohxll
Copy link

Pretty sure it’s entirely not against tos.

@Maple38
Copy link

Maple38 commented Feb 14, 2023

is it dangerous to use experiments on my main?

Absolutely. We can't say for sure that using them is safe, after all you have to enter this code to be able to use it in the first place unless you are discord staff. So it's best to assume yes.

I would say that while there is an inherent risk, you should be fine just having them enabled, because lots of people do without being banned. The main area I could see issues arising is if you attempt to bypass server-side permissions, like bigger file uploads without nitro. Changing stuff on the client-side shouldn't cause much issue though.

@Lebbbbb
Copy link

Lebbbbb commented Feb 15, 2023

I cant open up console anymore my config looks like
{ "BACKGROUND_COLOR": "#ffffff", "IS_MAXIMIZED": true, "IS_MINIMIZED": false, "WINDOW_BOUNDS": { "x": 46, "y": 143, "width": 1441, "height": 791 }, "openasar": { "setup": true, "cmdPreset": "perf", "quickstart": true, "multiInstance": false }, "trayBalloonShown": true, "OPEN_ON_STARTUP": false, "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true }

@tenent007963
Copy link

tenent007963 commented Feb 15, 2023

Pretty sure it’s entirely not against tos.

Software in Discord’s services
License to our software. Some of our services allow you to download client software. So long as you comply with these terms, we grant you a worldwide, non-exclusive, personal, and non-assignable license to download, install, and run that software, solely to access our services.

You may not copy, modify, create derivative works based upon, distribute, sell, lease, or sublicense any of our software or services. You also may not reverse engineer or decompile our software or services, attempt to do so, or assist anyone in doing so, unless you have our written consent or applicable law permits it.

Unless my understand of "modify" is incorrect, it writes "you may not modify any of our software or services".

I cant open up console anymore my config looks like { "BACKGROUND_COLOR": "#ffffff", "IS_MAXIMIZED": true, "IS_MINIMIZED": false, "WINDOW_BOUNDS": { "x": 46, "y": 143, "width": 1441, "height": 791 }, "openasar": { "setup": true, "cmdPreset": "perf", "quickstart": true, "multiInstance": false }, "trayBalloonShown": true, "OPEN_ON_STARTUP": false, "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true }

Have you tried to maybe restart your Discord? Or maybe try to reinstall it?

@0x8008
Copy link

0x8008 commented Feb 17, 2023

this should work in all cases

webpackChunkdiscord_app.push([[0], {}, (e) => { module = Object.values(e.c).find(x => x?.exports?.default?.getUsers).exports.default; }]);
nodes = Object.values(module._dispatcher._actionHandlers._dependencyGraph.nodes);
try { nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({ user: { flags: 1 } }); } catch (e) { }
original = [module.getCurrentUser, module.getNonImpersonatedCurrentUser];
module.getCurrentUser = module.getNonImpersonatedCurrentUser = () => ({ isStaff: () => true });
nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["OVERLAY_INITIALIZE"]();
[module.getCurrentUser, module.getNonImpersonatedCurrentUser] = original;

Thanks, working fine on Canary

@namitsoo
Copy link

Thanks for sharing updated code. I'm able to see the experiments but unfortunately the HDR Screen capture option doesn't work anymore, is that right?

@acendvgnt
Copy link

Thanks for sharing updated code. I'm able to see the experiments but unfortunately the HDR Screen capture option doesn't work anymore, is that right?

This code only enables the Experiments tab and the ability to enable experiments in it. If an experiment doesn't work, it's most likely because Discord is experimenting with it.

@Chirunos
Copy link

Here is a BetterDiscord plugin for it:

/**
 * @name Experiments
 * @author Maple38
 * @description Enables access to experiments and staff-only options for normal users.
 * @version 1.0.0
 */

let wpRequire

module.exports = class Experiments {
    load() {}

    start = () => {
        
        window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);
        let mod = Object.values(wpRequire.c).find(x => typeof x?.exports?.Z?.isDeveloper !== "undefined");
        let usermod = Object.values(wpRequire.c).find(x => x?.exports?.default?.getUsers)
        let nodes = Object.values(mod.exports.Z._dispatcher._actionHandlers._dependencyGraph.nodes)
        try {
            nodes.find(x => x.name == "ExperimentStore").actionHandler["OVERLAY_INITIALIZE"]({user: {flags: 1}})
        } catch (e) {}
        let oldGetUser = usermod.exports.default.__proto__.getCurrentUser;
        usermod.exports.default.__proto__.getCurrentUser = () => ({isStaff: () => true})
        nodes.find(x => x.name == "DeveloperExperimentStore").actionHandler["CONNECTION_OPEN"]()
        usermod.exports.default.__proto__.getCurrentUser = oldGetUser
    }

    stop = () => {}
}

Put that into a BetterDiscord plugin and it should work. I simply turned the already working code to do it into a plugin that runs when you run Discord. I do not know any Javascript, so I probably won't be able to fix any issues you may have with it. Despite not knowing any Javascript, I somehow got this to work with the power of imagination and spending an hour assaulting my keyboard to fix errors.

If you don't know how to turn it into a plugin, just download this and put it in your plugins folder, which you can find by pressing Windows + R and typing %APPDATA%\BetterDiscord\plugins.

Thank you so much! Can you please upload this to a GitHub repo or something easier for other people to find?

@Battler624
Copy link

Battler624 commented Mar 15, 2023

Thanks for sharing updated code. I'm able to see the experiments but unfortunately the HDR Screen capture option doesn't work anymore, is that right?

It works, its just that the tonemapping isn't great. Its definitely better than standard.

Now I just need a way to make it stick through restarts of discord

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment