trugul-bot/bot.js

243 lines
5.9 KiB
JavaScript

var botLoop;
var botPaused = true;
var botPurchasing = false;
var botRaiding = false;
var botFightingRandomBoss = false;
var botFightingGlobalBoss = false;
var botBuySlimes = false;
var botFightGlobal = true;
var botRaidTarget = null;
var botGlobalBossTimer;
function mainLoop() {
if($('#popup').is(':visible')) {
var botPopupTitle = $('#popup p[name="title"]').text();
switch(botPopupTitle) {
case 'Raid report':
var botMessage = botBuildRaidReport($('#popup div[name="content"]').text());
console.log(botMessage);
clickButton('CONTINUE');
break;
case 'SUMMON BOSS':
clickButton('Summon Boss');
break;
case 'Are you sure?':
clickButton('Activate Item');
break;
case 'ARE YOU SURE?':
case 'CONFIRM PURCHASE':
if(botPurchasing) {
clickButton('Yes');
botPurchasing = false;
} else {
clickButton('No');
}
break;
case 'Raid':
if(haveRaidTarget() === true) {
if(botRaiding) {
clickButton('Raid!');
botRaiding = false;
} else {
clickButton('Nevermind');
}
}
break;
case 'WHOOPS!':
case 'BATTLE REPORT':
case 'Battle Report':
case 'ACTIVITY PASSED!':
case 'SCENARIO #1':
case 'Lobby closed':
case 'Wait':
clickButton('CONTINUE');
break;
default:
console.log('Unknown popup: ' + botPopupTitle);
break;
}
}
//RANDOM BOSS
if(randomBossRefreshing() === true && botFightingRandomBoss === true && botFightingGlobalBoss === false) {
botFightingRandomBoss = false;
} else if(randomBossRefreshing() === false && botFightingRandomBoss === false) {
clickSelector('#randomBossPortal a');
botFightingRandomBoss = true;
}
//GLOBAL BOSS
if(globalBossRefreshing() === true && botFightingGlobalBoss === true && botFightGlobal === true) {
clearInterval(botGlobalBossTimer);
botFightingGlobalBoss = false;
} else if(globalBossRefreshing() === false && botFightingGlobalBoss === false) {
clickSelector('span[name="timeRemaining"]:contains("JOIN") a');
botGlobalBossTimer = setInterval(fightGlobalBoss, 250);
botFightingGlobalBoss = true;
}
//ACTIVATE BUFFS
if(inactiveBuffs()) {
clickSelector('button:contains("Activate")');
}
//BUY SCIENTISTS
if(haveBossCoins() && haveCheapLabor()) {
botPurchasing = true;
clickSelector('button[name="hiremax_scientists"]');
}
//RAID
if(raidRefreshing() === false && haveRaidTarget() === true) {
clickSelector('button[name="raid_button"]');
botFillIn('input[name="raid_user"]', botRaidTarget);
botRaiding = true;
}
//BUY SLIMES
if(botBuySlimes === true && haveTrillions(10) && botPurchasing === false) {
botPurchasing = true;
clickSelector('button[name="buymax-knight"]');
}
}
botToggle();
function botFillIn(selector, text) {
$(selector).val(text);
}
function raidRefreshing() {
if($('span[name="raidtime"]').css('display') == 'none') {
return false;
} else {
return true;
}
}
function haveRaidTarget() {
if(botRaidTarget == null) {
return false;
} else {
return true;
}
}
function botBuildRaidReport(message) {
var botRaidUser;
if(/You.? were raided by (.*?).? /.exec(message)) {
botRaidUser = /You.? were raided by (.*?).? /.exec(message)[1];
} else {
botRaidUser = /You .*? the raid against (.*?)! /.exec(message)[1];
}
var botRaidSoldiers = /! .*? lost (.*?) soldiers/.exec(message)[1];
var botRaidResult = (/won/.exec(message) !== null) ? 'won' : 'lost';
var botRaidStolen = (/steal (.*?) from/.exec(message) !== null) ? /steal (.*?) from/.exec(message)[1] : '$0';
return "RAIDED (" + botRaidUser + "): " + botRaidResult + "; souldiers: -" + botRaidSoldiers + "; " + botRaidResult + " money: " + botRaidStolen;
}
function haveTrillions(trillions) {
var botCurrency = $('#money_display').text();
var botLowerLimit = trillions * 1000000000000;
var botCurrencyInt = Number(botCurrency.replace(/[^0-9\.]+/g,""));
if(botCurrencyInt > botLowerLimit) {
return true;
} else {
return false;
}
}
function haveBossCoins() {
if($('#bc_display').text() != 0) {
return true;
} else {
return false;
}
}
function haveCheapLabor() {
if($('span[name="scientists_price"]').text() == "1 BC") {
return true;
} else {
return false;
}
}
function inactiveBuffs() {
if($('button:contains("Activate")').length > 0) {
return true;
} else {
return false;
}
}
function randomBossRefreshing() {
if($('span[name="timer"]').is(':visible')) {
return true;
} else {
return false;
}
}
function globalBossRefreshing() {
if($('span[name="timeRemaining"]:contains("min"), span[name="timeRemaining"]:contains("sec")').length > 0) {
return true;
} else {
return false;
}
}
function fightGlobalBoss() {
if($('img[name="globalBossImg"]').is(':visible')) {
$('img[name="globalBossImg"]').get(0).click();
}
}
function clickButton(text) {
$('#popup span button:contains("' + text + '")').get(0).click();
}
function clickSelector(selector) {
$(selector).get(0).click();
}
function botToggle() {
if(botPaused) {
console.log('Playing bot');
botLoop = setInterval(mainLoop, 1000);
botPaused = false;
} else {
console.log('Pausing bot');
clearInterval(botLoop);
botPaused = true;
}
}
function botToggleSlimes() {
if(botBuySlimes) {
console.log('Stopping slime purchases');
botBuySlimes = false;
} else {
console.log('Starting slime purchases');
botBuySlimes = true;
}
}
function botToggleGlobal() {
if(botFightGlobal) {
console.log('Stopping global fighting');
botFightGlobal = false;
} else {
console.log('Starting global fighting');
botFightGlobal = true;
}
}
function botSetTarget(username) {
botRaidTarget = username;
}
function botClearTarget() {
botRaidTarget = null;
}