Guest User

Untitled

a guest
Mar 1st, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name farma
  3. // @namespace DD
  4. // @include /http:\/\/pl00\.plemiona\.pl\/game\.php\?.*&screen=am_farm/
  5. // @version 1
  6. // @grant GM_getValue
  7. // @grant GM_setValue
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. $('.farm_icon_b').trigger('click');
  13.  
  14. function get(name){
  15. if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec($("a").attr('href')))
  16. return decodeURIComponent(name[1]);
  17. }
  18.  
  19. link="http://pl100.plemiona.pl/game.php?village=n" + get('village')+ "&screen=am_farm";
  20. window.location.href = link;
Advertisement
Add Comment
Please, Sign In to add comment