Skip to content
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

Merged
merged 3 commits into from
Dec 16, 2020

Conversation

MurdocTurner
Copy link
Contributor

No description provided.

Copy link
Member

@AlcaDesign AlcaDesign left a 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)

@AlcaDesign
Copy link
Member

Is it possible to have a custom-reward-id and a msg-id -- either way I don't think I'd want two redeem events being emitted.

@MurdocTurner
Copy link
Contributor Author

PRIVMSG's that include custom-reward-id doesn't have a msg-id at all with the raw data from IRC. So I don't think it's possible for both to collide.

If you prefer I can just change them to have separate named event emitters. (highlightedRedeem, subOnlyRedeem, customRewardRedeem) ¯\_(ツ)_/¯

@AlcaDesign
Copy link
Member

Or just another else if ;)

@AlcaDesign AlcaDesign merged commit 00e9ca7 into tmijs:master Dec 16, 2020
@rodrigograca31
Copy link

@AlcaDesign can you please make a 1.7.0 release? 🤔

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 :)
(I am using another lib just for the redeems, now I can hopefully remove it and use this one only! thanks @MurdocTurner !)

@rodrigograca31
Copy link

Version 1.7.0 was published.

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 console.log(message); after var messagesLogLevel = _.get(this.opts.options.messagesLogLevel, "info") and it never logs anything with the tags "custom-reward-id" or "msg-id" or others that should trigger the "redeem" 🤔🤔🤔🤔

@AlcaDesign
Copy link
Member

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!'
]

[16:42] info: [#alca] : Hello, World!

@rodrigograca31
Copy link

🤔🤔🤔 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...

@AlcaDesign
Copy link
Member

PubSub and the new EventSub (WebHooks are the only available transport atm) support all custom rewards.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants