Reputation: 423
I am trying to make a twitch bot that uses a command that only the channel owner can use. How can I identify a unique user. Basically, how can I tell the program to only allow a certain user to use a certain command?
Upvotes: 1
Views: 571
Reputation: 423
I fixed my issue using the following: ${user['display-name']}
then applied this to a variable and used an if statement.
Like this
var chanName = '${user['display-name']}`;
if (chanName === 'usernameperson`){
stuff;
}
Upvotes: 1