Plugin

NoOnboardingDelay

Skips the slow and annoying onboarding delay

Utility Servers
index.ts
Download

Source

src/plugins/noOnboardingDelay/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: "NoOnboardingDelay",
12 description: "Skips the slow and annoying onboarding delay",
13 tags: ["Utility", "Servers"],
14 authors: [Devs.nekohaxx],
15 patches: [
16 {
17 find: "#{intl::ONBOARDING_COVER_WELCOME_SUBTITLE}",
18 replacement: {
19 match: "3e3",
20 replace: "0"
21 },
22 },
23 ],
24});
25