Skip to main content

Custom Activity

  1. Add the following import to backend/src/index.ts.

    import { ActivityType } from "discord.js";
  2. Add e.g.,

    client.user?.setPresence({
    activities: [{ name: "zeppelins", type: ActivityType.Watching }],
    });

    to line 360 (under startUptimeCounter()). You can find all of the different ActivityType's here.

    custom activity

  3. Rebuild & restart your instances.