Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.prestige-gaming.org/*
  8. // @require http://code.jquery.com/jquery-2.1.0.min.js
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. $("#taigachat_message").val("Plz ban me");
  17. $("#taigachat_send").submit();
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement