@sylbro/cronguru
Version:
cronGuru is an autovoter for challenges of gurushots.com. Simply login and it will vote to all the challenges that you joined. It will vote just enough to maintain your ratio at the highest possible level. It will also apply free boost to the picture with
15 lines (11 loc) • 357 B
JavaScript
const cron = require('node-cron');
const { fetchChallengesAndVote } = require('./src/calls')
const { interval } = require('./src/config')
let voteCounter = 0;
const task = cron.schedule(interval, () => {
voteCounter += 1
console.log(`--- Autovoting (${voteCounter}) ---`);
fetchChallengesAndVote();
});
fetchChallengesAndVote()
task.start();