Plugin

NoOnboardingDelay

Skips the slow and annoying onboarding delay

Utility Servers
index.ts
Download

Source

src/plugins/noOnboardingDelay/index.ts
1import { Devs } from "@utils/constants";
2import definePlugin from "@utils/types";
3
4export default definePlugin({
5 name: "NoOnboardingDelay",
6 description: "Skips the slow and annoying onboarding delay",
7 tags: ["Utility", "Servers"],
8 authors: [Devs.nekohaxx],
9 patches: [
10 {
11 find: "#{intl::ONBOARDING_COVER_WELCOME_SUBTITLE}",
12 replacement: {
13 match: "3e3",
14 replace: "0"
15 },
16 },
17 ],
18});
19