Advertisement
h0rnet

JSXatBot Auto Login

Apr 13th, 2013
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @id             XatMobileAutoLogin
  3. // @name           H0rnetBotAutologin
  4. // @version        1.3.3.7
  5. // @namespace      Twin
  6. // @author         Twin
  7. // @description    
  8. // @include        http://m.xat.com/
  9. // @run-at         document-end
  10. // ==/UserScript==
  11.  
  12. /*
  13. Run this script on m.xat.com
  14. NOTE: You must install the Firefox Scriptish addon
  15. ( https://addons.mozilla.org/en-US/firefox/addon/scriptish/ )
  16. */
  17.  
  18. var BotUserName = "Botnamehere";    //Bot regname here
  19. var BotPassword = "Botpasswordhere";    //Bot password here
  20. var GroupName = "TheSinned";        //group name here
  21.  
  22. document.body.style.background = "#A4A4A4";
  23. document.getElementById("body").style.color = "blue";
  24. document.getElementById("form").style.color = "blue";
  25. document.getElementById("password").value = BotPassword;        //bot pwd
  26. document.getElementsByName("YourEmail")[0].value = BotUserName; //Bot username
  27. document.getElementsByName("Group")[0].value = GroupName;       //Group name
  28.  
  29. //OPTIONAL
  30. //document.getElementsByName("SignIn")[0].click();
  31. //OPTIONAL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement