How to make any skype unuseable 06-15-2015, 03:59 PM
#1
mass view bots dont fuck around, this shit is rape
NOTE: If you don't know how to use this unlucky, i don't feel like teaching you the fundamentals of javascript you're going to have to learn that in your own time.
Code:
// ==UserScript==
// @name     Interpals mass view bot
// @namespace   http://your.homepage/
// @version    0.1
// @description  enter something useful
// @author    Marshall Goldsmith
// @match     http://sadie8250.hostei.com/select.php?method=ipals
// @grant     GM_xmlhttpRequest
// ==/UserScript==
poffset = 0;
gay = 1;
function _view() {
  if (gay == 1) {
    gay = 0;
    GM_xmlhttpRequest({
      method: "GET",
      timeout: 3000,
      url: "http://www.interpals.net/online.php?order=updated&age1=13&age2=100&dir=desc&offset=" + poffset,
      onload: function(response) {
        var str = response.responseText;
        var hsplit = str.split("\n");
        var i;
        for (i = 0; i < hsplit.length; i++) {
          var check = hsplit[i];
          if (check.indexOf("title='View") != -1) {
            var ksplit = check.split("'");
            var wpage = "http://www.interpals.net/" + ksplit[3];
            _viewit(wpage, ksplit[3])
          }
        }
        poffset += 42;
        if (poffset >= 1000) {
          poffset = 0;
        }
      }
    });
    gay = 1;
  }
}
function _viewit(wpage, user) {
  GM_xmlhttpRequest({
    method: "GET",
    timeout: 1000,
    url: wpage,
    onload: function(response) {
      document.body.innerHTML = "<center><h1>Now viewing: " + user;
    }
  });
}
setInterval(function() { _view(); }, 1000);
function rand(minimum, maximum) {
  return randomnumber = Math.floor(Math.random() * (maximum - minimum + 1)) + minimum;
}NOTE: If you don't know how to use this unlucky, i don't feel like teaching you the fundamentals of javascript you're going to have to learn that in your own time.
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)

