Advertisement
Guest User

Untitled

a guest
Jan 15th, 2016
1,292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Microids autrodraw
  3. // @namespace http://www.microids.com/EN/mcc*
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Microids autrodraw
  7. // @match http://www.microids.com/EN/mcc*
  8. // @grant none
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11. 'use strict';
  12.  
  13. // Your code here...
  14.  
  15. $('#MCG_btnDraw').click();
  16.  
  17. setTimeout(function(){
  18. $('.MGC_msgbtn').click();
  19. }, 2000);
  20.  
  21. setTimeout(function(){
  22. $('.MGC_msgbtn').click();
  23. }, 3000);
  24.  
  25. setTimeout(function(){
  26. $('.MGC_msgbtn').click();
  27. }, 4000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement