chore: init

This commit is contained in:
2025-12-27 17:16:20 +02:00
commit 7b85dc6e07
10 changed files with 1727 additions and 0 deletions

20
trustMeBro.ts Normal file
View 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 Discords 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;
}
});