Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/N3XT3R1337/RiftCE/llms.txt

Use this file to discover all available pages before exploring further.

Rift CE provides a bulk import flow for quickly adding many accounts at once, and an export flow for backing up or sharing account metadata. Imports validate cookies against the Roblox API in real time. Exports never include raw cookies or passwords — only metadata safe to store or share.

Importing accounts

Import progress

Both import modes report progress through the ImportProgress model:
FieldTypeDescription
TotalintTotal number of lines submitted for import.
CompletedintLines processed so far (successes + failures + skipped blanks).
SucceededintLines that resulted in a new account being added.
FailedintLines where validation failed or a duplicate was detected.
CurrentItemstringA truncated preview of the item currently being processed (first 20 characters of the cookie or username).
The progress indicator in the UI updates after every line using an IProgress<ImportProgress> callback.

Exporting accounts

Click Export → Export to JSON to save account metadata to a .json file.
[
  {
    "username": "player1",
    "userId": 123456789,
    "alias": "My main",
    "group": "Alts",
    "robux": 500,
    "cookieValid": true,
    "lastHealthCheck": "2024-06-01 14:30:00",
    "cookieAgeDays": 12
  }
]
The JSON schema includes these fields for every account:
FieldTypeSource
usernamestringAccount.Username
userIdnumberAccount.UserId
aliasstringAccount.Alias
groupstringAccount.Group
robuxnumberAccount.Robux (from last health check)
cookieValidbooleanAccount.CookieValid (from last health check)
lastHealthCheckstringAccount.LastHealthCheck formatted as yyyy-MM-dd HH:mm:ss, or "" if never checked
cookieAgeDaysnumberAccount.CookieAge — days since cookie was last set, or 0 if unknown
Raw .ROBLOSECURITY cookies and passwords are never included in any export. All three export formats output only metadata. If you need to transfer credentials between machines, use the encrypted backup file instead.

Automatic backups

BackupService creates automatic daily backups of the encrypted accounts.dat file. Backups are stored at:
%LocalAppData%\RiftCE\backups\
Because backups are copies of the DPAPI-encrypted file, they can only be restored on the same Windows user account that created them. To restore a backup, replace accounts.dat with the desired backup file and restart Rift CE.
Before performing a bulk import or deletion, manually trigger a backup from Settings → Backup Now to create an on-demand snapshot.

Build docs developers (and LLMs) love