Skip to content

Instantly share code, notes, and snippets.

@LukeFinch
Created October 15, 2019 19:49
Show Gist options
  • Save LukeFinch/0eb0720b6116c339826545288825ac19 to your computer and use it in GitHub Desktop.
Save LukeFinch/0eb0720b6116c339826545288825ac19 to your computer and use it in GitHub Desktop.
var kinoJoined = false
client.on('join', (channel, username, self) => {
if(username == 'kinotheproducer'){
kinoJoined = true
}
})
client.on('message', (channel, userstate, message, self) => {
if (self) return
if (userstate.username == 'kinotheproducer'){
kinoJoined = false
client.say(channel, 'Wassup')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment