Advertisement
az4521

Untitled

Jun 19th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * Script: Az Irritation Button
  3.  * Version: 1.B
  4.  * Adds a button that sends a message to a bot
  5.  * bot then adds to a count of irritations per username
  6.  * super basic
  7.  */
  8. var azadd = function() {
  9.     var az= $('<button class="btn btn-default btn-sm" id="az-button">Az Just Annoyed Me!</button>');
  10.     az.on("click", function() {
  11.         $api.command("az_bot", "azannoy")
  12.     });
  13.     $("#az-button").remove();
  14.     $(".chatbuttons > .btn-group").append(az);
  15. };
  16. azadd()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement