![]() |
|
How to make any skype unuseable - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: The Lounge (https://sinister.ly/Forum-The-Lounge) +--- Thread: How to make any skype unuseable (/Thread-How-to-make-any-skype-unuseable) Pages:
1
2
|
How to make any skype unuseable - doonclaw - 06-15-2015 mass view bots dont fuck around, this shit is rape 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. RE: How to make any skype unuseable - Ducati - 06-15-2015 Thanks I guess, I don't code much with Java script - Mainly Python. RE: How to make any skype unuseable - doonclaw - 06-15-2015 (06-15-2015, 05:08 PM)ØR۫BIT Wrote: Thanks I guess, I don't code much with Java script - Mainly Python.No problem. hope you find some use out of it. =) RE: How to make any skype unuseable - Midnight - 06-15-2015 is this shit all done web-based? RE: How to make any skype unuseable - taku - 06-15-2015 Nice little addition to the forum. I didn't personally try the script, but it seems promising. RE: How to make any skype unuseable - doonclaw - 06-15-2015 (06-15-2015, 05:23 PM)Paradise Wrote: is this shit all done web-based?What do you mean web-based? as in the coding part or using the actual script? RE: How to make any skype unuseable - ProfessionalSkid - 06-15-2015 I have no idea how to use this, so I'm just going to leave it alone
RE: How to make any skype unuseable - Midnight - 06-15-2015 (06-15-2015, 05:26 PM)doonclaw Wrote:Just the way it was made and what to use it on.(06-15-2015, 05:23 PM)Paradise Wrote: is this shit all done web-based?What do you mean web-based? as in the coding part or using the actual script? RE: How to make any skype unuseable - doonclaw - 06-15-2015 (06-15-2015, 05:29 PM)Paradise Wrote:This was coded in about 40 mins in motha fucking notepad++ You can use on any skype profile.(06-15-2015, 05:26 PM)doonclaw Wrote:Just the way it was made and what to use it on.(06-15-2015, 05:23 PM)Paradise Wrote: is this shit all done web-based?What do you mean web-based? as in the coding part or using the actual script? (06-15-2015, 05:29 PM)djfrydog Wrote: I have no idea how to use this, so I'm just going to leave it alone That's unfortunate, thank's for posting. RE: How to make any skype unuseable - Kawaii Love - 06-16-2015 thanks for this leak! |