Plugin

UnlimitedAccounts

Increases the amount of accounts you can add.

index.ts
Download

Source

src/plugins/unlimitedAccounts/index.ts
1/*
2 * FiveCord — a Discord client mod
3 * Copyright (c) 2025 FiveCord
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7import { Devs } from "@utils/constants";
8import definePlugin from "@utils/types";
9
10export default definePlugin({
11 name: "UnlimitedAccounts",
12 description: "Increases the amount of accounts you can add.",
13 authors: [Devs.FiveCord],
14 patches: [
15 {
16 find: "multiaccount_cta_tooltip_seen",
17 replacement: {
18 match: /(let \i=)\d+(,\i="switch-accounts-modal",\i="multiaccount_cta_tooltip_seen")/,
19 replace: "$1Infinity$2",
20 },
21 },
22 ],
23});
24