About Twitch Chat Commands #421
-
Language: Python Hi, first time here. I spent some time studying Twitch API and tmi.js. I am able to build a simple bot ( But when I tried to utilize the "Twitch Chat Commands" within the bot (like creating announcement with /announce or clear chat with /clear), I was unable to achieve that. I tried to send out plan Twitch Chat Commands, for example, From the reference doc, I found there is a class I am a bit confused right now and not sure if I am on the right direction. Is it possible execute 'Twitch Chat Commands' via twitchio? It seems |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi there, twitch has removed the ability for bots to use slash commands, unfortunately.
|
Beta Was this translation helpful? Give feedback.
Hi there, twitch has removed the ability for bots to use slash commands, unfortunately.
Here's a list of things you can use instead:
/w
-> PartialUser.send_whisper/mod
-> PartialUser.add_channel_moderator / PartialUser.remove_channel_moderator/vip
-> PartialUser.add_channel_vip / PartialUser.remove_channel_vip/shoutout
-> PartialUser.shoutout/raid
-> PartialUser.start_raid (also: PartialUser.cancel_raid)/ban
-> PartialUser.ban_user/unban
-> PartialUser.unban_user/shield
-> PartialUser.update_shield_mode_status/timeout
-> PartialUser.timeout_user/announce
-> PartialUser.chat_announcement/clear
//delete
-> PartialUser.delete_chat_messages/uniquechat
,/followers
,/emoteonly
-> Pa…