-
-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
client: add channel point redemption event #442
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use else if
(Just modify your code, don't necessarily need to change the code below)
Is it possible to have a |
PRIVMSG's that include If you prefer I can just change them to have separate named event emitters. ( |
Or just another |
@AlcaDesign can you please make a and publish it to npm, seems git has 1.6.0 but npm is still at 1.5.0 I want to start using this new feature asap :) |
Version Im testing this code and doesn't seem to work: My code client.on("redeem", (channel, username, rewardtype, tags, msg) => {
console.log(channel);
console.log(username);
console.log(rewardtype);
console.log(tags);
console.log(msg);
// my_function(1);
}); that code never fires! I opened the lib directly and added |
This event requires that the redemption has "Require Viewer to Enter Text" enabled in order to be sent to the IRC. Only then will it be picked up by tmi.js. I just tested it in my own channel and got the event. [
'#alca',
'alca',
'8efccfc1-c489-4c34-9bcc-320669913c8c',
{
'badge-info': { subscriber: '41' },
badges: { broadcaster: '1', subscriber: '3012', 'sub-gifter': '5' },
color: '#177DE3',
'custom-reward-id': '8efccfc1-c489-4c34-9bcc-320669913c8c',
'display-name': 'Alca',
emotes: null,
flags: null,
id: 'ac324900-90b3-4d3b-b4d6-092c5c06d6bd',
mod: false,
'room-id': '7676884',
subscriber: true,
'tmi-sent-ts': '1608331358547',
turbo: false,
'user-id': '7676884',
'user-type': null,
'emotes-raw': null,
'badge-info-raw': 'subscriber/41',
'badges-raw': 'broadcaster/1,subscriber/3012,sub-gifter/5',
username: 'alca',
'message-type': 'chat'
},
'Hello, World!'
]
|
🤔🤔🤔 I was expecting this to work for custom reward redeems without text entering being required... 😢 Is there really no way!? Will, it never hit IRC and because of that it this lib will never be able to be triggered!? 😢 😭 I was looking forward to removing my dependency on twitch-pubsub-client just for custom reward redeems... |
PubSub and the new EventSub (WebHooks are the only available transport atm) support all custom rewards. |
No description provided.