You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
events=[Events.STREAMER_ONLINE, Events.STREAMER_OFFLINE, Events.BET_LOSE], # Only these events will be sent to the chat
222
230
)
223
231
),
224
232
streamer_settings=StreamerSettings(
@@ -390,6 +398,7 @@ You can combine all priority but keep in mind that use `ORDER` and `POINTS_ASCEN
390
398
|`auto_clear`| bool | True | Create a file rotation handler with interval = 1D and backupCount = 7 [#215](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/215)|
391
399
|`color_palette`| ColorPalette | All messages are Fore.RESET except WIN and LOSE bet (GREEN and RED) | Create your custom color palette. Read more above. |
392
400
|`telegram`| Telegram | None | (Optional) Receive Telegram updates for multiple events list [#233](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/233)|
401
+
|`discord`| Discord | None | (Optional) Receive Discord updates for multiple events list [#320](https://github.com/Tkd-Alex/Twitch-Channel-Points-Miner-v2/issues/320)|
393
402
394
403
#### Color Palette
395
404
Now you can customize the color of the terminal message. We have created a default ColorPalette that provide all the message with `DEFAULT (RESET)` color and the `BET_WIN` and `BET_LOSE` message `GREEN` and `RED` respectively. You can change the colors of all `Events` enum class. The colors allowed are all the Fore color from Colorama: `BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.`
@@ -420,7 +429,7 @@ If you want to receive logs update on Telegram initiate a new Telegram class, el
|`chat_id`| int || Chat ID to send messages @GiveChatId|
423
-
|`token`| string || Telegram API token @BotFather|
432
+
|`token`| string || Telegram API token @BotFather|
424
433
|`events`| list || Only these events will be sent to the chat. Array of Event. or str |
425
434
|`disable_notification`| bool | false | Revoke the notification (sound/vibration) |
426
435
@@ -434,6 +443,30 @@ Telegram(
434
443
)
435
444
```
436
445
446
+
#### Discord
447
+
If you want to receive log updates on Discord initialize a new Discord class, else leave omit this parameter or set it as None [YT Video](https://www.youtube.com/watch?v=fKksxz2Gdnc)
0 commit comments