chore: init
This commit is contained in:
20
trustMeBro.ts
Normal file
20
trustMeBro.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Vencord, a Discord client mod
|
||||
* Copyright (c) 2025 Vendicated and contributors
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
import definePlugin from "@utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "TrustMeBro",
|
||||
description: "Bypasses Discord’s age verification required under the UK Online Safety Act.",
|
||||
authors: [{ name: "Menhera.st Team", id: 1325012503419420734n }],
|
||||
|
||||
start() {
|
||||
const modules = Object.values((window as any).webpackChunkdiscord_app.push([[Symbol()], {}, (r: any) => r.c])) as any[];
|
||||
const userStore = modules.find((x: any) => x?.exports?.default?.getCurrentUser);
|
||||
const currentUser = userStore.exports.default.getCurrentUser();
|
||||
currentUser.ageVerificationStatus = 3;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user