Discord.https - v3.0.16
    Preparing search index...

    Interface RPCSetUserVoiceSettingsArgs

    Discord only supports a single modifier of voice settings at a time over RPC. If an app changes voice settings, it will lock voice settings so that other apps connected simultaneously lose the ability to change voice settings. Settings reset to what they were before being changed after the controlling app disconnects. When an app that has previously set voice settings connects, the client will swap to that app's configured voice settings and lock voice settings again.

    interface RPCSetUserVoiceSettingsArgs {
        mute?: boolean;
        pan?: RPCVoicePan;
        user_id: string;
        volume?: number;
    }
    Index

    Properties

    mute?: boolean

    Set the mute state of the user

    Set the pan of the user

    user_id: string

    User id

    volume?: number

    Set the volume of user (min 0, max 200)

    100