@laplace.live/event-types
    Preparing search index...

    Interface UserBlock

    User block event when a specific user is blocked by the streamer or mods

    指定观众禁言,该事件大概在 2025 六月的某一天(具体日期懒得翻日志了)后只有下列情形会显示:

    • 主播本人拿到的事件流
    • 房管拿到的事件流
    • 被禁言用户本人拿到的事件流

    在此之后,其他观众无法再次拿到此事件😅

    BilibiliInternal.WebSocket.Prod.ROOM_BLOCK_MSG for the original version

    interface UserBlock {
        blockExpired?: number;
        id: string;
        operator: 1 | 2;
        origin: number;
        originIdx: number;
        read: boolean;
        timestamp: number;
        timestampNormalized: number;
        type: "user-block";
        uid: number;
        username: string;
        vaildPeriod?: string;
    }
    Index

    Properties

    blockExpired?: number

    Block expiration timestamp in milliseconds

    id: string
    operator: 1 | 2

    1: moderator 2: streamer

    origin: number
    originIdx: number
    read: boolean
    timestamp: number
    timestampNormalized: number
    type: "user-block"
    uid: number
    username: string
    vaildPeriod?: string