rozod
    Preparing search index...

    Type Alias CookieRefreshEvent

    Event data passed to the cookie refresh callback when Roblox rotates a cookie.

    type CookieRefreshEvent = {
        newCookie: string;
        oldCookie: string;
        poolIndex: number;
    }
    Index

    Properties

    newCookie: string

    The new cookie value received from Roblox

    oldCookie: string

    The old cookie value that was used in the request

    poolIndex: number

    The index in the cookie pool that was updated (0 for single cookie, should not be -1 in normal operation)