Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Script: Az Irritation Button
- * Version: 1.B
- * Adds a button that sends a message to a bot
- * bot then adds to a count of irritations per username
- * super basic
- */
- var azadd = function() {
- var az= $('<button class="btn btn-default btn-sm" id="az-button">Az Just Annoyed Me!</button>');
- az.on("click", function() {
- $api.command("az_bot", "azannoy")
- });
- $("#az-button").remove();
- $(".chatbuttons > .btn-group").append(az);
- };
- azadd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement