Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Conquest Alpha
  3. // @version     1.9.1
  4. // @namespace   Conquest Alpha Bot
  5. // @homepage    http://userscripts.org/scripts/show/162501
  6. // @include     *.alphacentaurigames.com/*
  7. // @include     *apps.facebook.com/conquest-alpha/*
  8. // @require     http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // @require     http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js
  10. // @icon        http://nicodebelder.eu/koc/logo.png
  11. // @grant       GM_getValue
  12. // @grant       unsafeWindow
  13. // @grant       GM_deleteValue
  14. // @grant       GM_getValue
  15. // @grant       GM_setValue
  16. // @grant       GM_listValues
  17. // @grant       GM_addStyle
  18. // @grant       GM_xmlhttpRequest
  19. // @grant       GM_log
  20. // @grant       GM_registerMenuCommand
  21. // ==/UserScript==
  22.  
  23. var uW = unsafeWindow;
  24.  
  25. $().ready(function() {
  26.    console.log("Loaded");
  27.    setTimeout(log,5000);
  28.     /*$.get("https://tamunave.no-ip.org/test",{uW:"test"}).done(function(data){
  29.        alert("Request send");
  30.     });
  31.     */
  32. });
  33.  
  34. function log(){
  35.    console.log(uW.usersHangar);  
  36.    for (var k in uW.usersHangar){
  37.      console.log(uW.usersHangar[k]);  
  38.    }
  39.    
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement