This is the tampermonkey js that r/reddcoin encourages their users to use for vote botting.
Dropbox: https://dl.dropboxusercontent.com/u/2096349/Mintpal%20AutoVote.tamper%20v3.js
See irc logs HERE: http://bitbin.it/o65IQh74 & http://pastebin.com/KkbJNVXB
// ==UserScript==
// @name Mintpal AutoVote
// @namespace http://noneoffurbisniss.com/
// @include https://mintpal.com/*
// @include https://www.mintpal.com/*
// @version 2
// @require http://code.jquery.com/jquery-2.0.3.min.js
// ==/UserScript==
jQuery.fn.simulateClick = function() {
return this.each(function() {
if('createEvent' in document) {
var doc = this.ownerDocument,
evt = doc.createEvent('MouseEvents');
evt.initMouseEvent('click', true, true, doc.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
this.dispatchEvent(evt);
} else {
this.click(); // IE :\
}
});
}
function vote() {
$('a[coin="80"]').simulateClick('click');
}
function randomIntFromInterval(min,max)
{
return Math.floor(Math.random()*(max-min+1)+min);
}
function reload() {
location.reload();
}
// Initialize
if (document.domain == 'mintpal.com' || document.domain == 'www.mintpal.com')
{
vote();
if(window.location.href.indexOf("voting") > -1) {
setInterval(function() {
reload();
}, randomIntFromInterval(600000, 750000));
}
}