Rift CE can post rich Discord embeds to a channel you control whenever key events occur — an account launches, a batch import completes, a health check finishes, or a cookie is found to be expired. All notifications go to a single webhook URL, and each event type can be toggled on or off independently.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.
Setting up a Discord webhook
Open your Discord server settings
In Discord, open the server where you want to receive notifications. Click the server name at the top-left and select Server Settings.
Create a webhook
Go to Integrations → Webhooks → New Webhook. Give it a name (for example, “Rift CE”) and choose the channel where notifications should appear.
Copy the webhook URL
Click Copy Webhook URL. The URL looks like
https://discord.com/api/webhooks/123456789/abcdefg....Paste the URL into Rift CE
In Rift CE, go to Settings → Discord Webhook. Paste the URL into the Webhook URL field and toggle Enable Webhook on. This sets
DiscordWebhookEnabled to true and saves the URL to DiscordWebhookUrl.Enable the events you want
Toggle on each event type you want to receive notifications for. See the section below for what each event sends.
Per-event toggles
Each event type is controlled by an independent setting. All four are enabled by default when you turn webhooks on.WebhookNotifyLaunch — account launched
WebhookNotifyLaunch — account launched
Fires when you launch an account into a Roblox place, whether triggered from the UI or via the web API.The embed includes:
- Account — the Roblox username
- Place ID — the numerical place ID launched into
- Time — the local time the launch was triggered
WebhookNotifyImport — accounts imported
WebhookNotifyImport — accounts imported
Fires when a batch import completes, regardless of whether it was triggered by cookie paste, file import, or the web API.The embed includes:
- The number of accounts successfully imported
- The number that failed
WebhookNotifyHealthCheck — health check complete
WebhookNotifyHealthCheck — health check complete
Fires when a health check run finishes across all accounts.The embed includes:
- Total accounts checked
- Valid — cookies that passed validation
- Invalid — cookies that failed
- Total Robux — combined Robux balance across all valid accounts
WebhookNotifyCookieExpired — cookie expired
WebhookNotifyCookieExpired — cookie expired
Notification format
All notifications are sent as Discord rich embeds with:- A title describing the event
- A description with the key details
- Inline fields for structured data where applicable
- A UTC timestamp on every embed
- Rift CE as the webhook username
Rift CE sends notifications directly from your machine to the Discord webhook URL. No data passes through any Rift server. If
DiscordWebhookEnabled is false or the URL is blank, all webhook calls are silently skipped — they never fail or block other operations. The HTTP timeout for webhook requests is 10 seconds.Settings reference
| Setting | Type | Default | Description |
|---|---|---|---|
DiscordWebhookEnabled | bool | false | Master toggle for all webhook notifications |
DiscordWebhookUrl | string | "" | Discord webhook URL |
WebhookNotifyLaunch | bool | true | Notify when an account is launched |
WebhookNotifyImport | bool | true | Notify when accounts are imported |
WebhookNotifyHealthCheck | bool | true | Notify when a health check completes |
WebhookNotifyCookieExpired | bool | true | Notify when a cookie is found expired |