1
0
Fork 0
trugul-bot/public/bot.js

441 lines
12 KiB
JavaScript

var BOT_WORKER_MONEY = 1;
var BOT_SLIME_MONEY = 10;
var botLoop;
var botGlobalBossTimer;
var botPaused = true;
var botPurchasing = false;
var botRaiding = false;
var botFightingRandomBoss = false;
var botFightingGlobalBoss = false;
var botBuySlimes = false;
var botBuyWorkers = false;
var botFightGlobal = true;
var botFightRandom = true;
var botRaidTarget = null;
var botLastRandom = 0;
var botLastRaid = 0;
var botSleeping = false;
var botUser = null;
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);
botLastRaid = botTimestamp();
clickButton('CONTINUE');
break;
case 'SUMMON BOSS':
clickButton('Summon Boss');
botLastRandom = botTimestamp();
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 'CONFIRM':
if(botPurchasing) {
clickButton('Yes');
botPurchasing = false;
}
break;
case 'WHOOPS!':
case 'BATTLE REPORT':
case 'Battle Report':
case 'ACTIVITY PASSED!':
case 'SCENARIO #1':
case 'Lobby closed':
case 'Wait':
case 'ACTIVITY FAILED!':
case 'Game in progress':
case 'User not found':
clickButton('CONTINUE');
break;
default:
console.log('Unknown popup: ' + botPopupTitle);
break;
}
} else {
//RANDOM BOSS
if(randomBossRefreshing() === true && botFightingRandomBoss === true && botFightingGlobalBoss === false && haveSoldiers()) {
botFightingRandomBoss = false;
} else if(randomBossRefreshing() === false && botFightingRandomBoss === false && botFightRandom === true) {
clickSelector('#randomBossPortal a');
botFightingRandomBoss = true;
} else if(botTimestamp() > botLastRandom + 180 && botFightRandom === true) {
clickSelector('#randomBossPortal a');
botFightingRandomBoss = true;
}
//GLOBAL BOSS
if(globalBossRefreshing() === true && botFightingGlobalBoss === true) {
clearInterval(botGlobalBossTimer);
botFightingGlobalBoss = false;
} else if(globalBossRefreshing() === false && botFightingGlobalBoss === false && botFightGlobal === true) {
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 === false) {
botPurchasing = true;
clickSelector('button[name="hiremax_scientists"]');
}
//RAID
if(raidRefreshing() === false && haveRaidTarget() === true && internalRaidRefreshing() === false) {
clickSelector('button[name="raid_button"]');
botFillIn('input[name="raid_user"]', botRaidTarget);
botRaiding = true;
}
//BUY SLIMES
if(botBuySlimes === true && haveTrillions(BOT_SLIME_MONEY) && botPurchasing === false) {
botPurchasing = true;
clickSelector('button[name="buymax-knight"]');
}
//BUY WORKERS
if(botBuyWorkers === true && haveTrillions(BOT_WORKER_MONEY) && haveCheapLabor() === true && botPurchasing === false) {
botPurchasing = true;
clickSelector('button[name="buymax-' + mostEfficientWorker() + '"]');
}
}
}
botDetectUser();
botToggle();
function botDetectUser() {
var guests = $('#player-list').children().find('span.username-holder:contains("Guest_")');
var randomGuest = $(guests[Math.floor(Math.random() * guests.length)]).text();
$('#chatbox').bind('DOMSubtreeModified', function() {
var lastMessage = $(this).find('.chat-message').last();
if(lastMessage.find('.chat-pm').text() == 'PM -> ' + randomGuest) {
botUser = lastMessage.find('.username').text().trim();
console.log('Setting bot user to ' + botUser);
$('#chatbox').unbind('DOMSubtreeModified');
chatMonitor();
}
});
botSendChat('/pm ' + randomGuest + ' hello!');
}
function botSendChat(message) {
botFillIn('#chat_msg', message);
var e = jQuery.Event("keypress");
e.which = 13;
e.keyCode = 13;
$("#chat_msg").trigger(e);
}
function mostEfficientWorker() {
var bestValueWorker;
var bestValue;
$('table[name="workers"] > tbody').children().each(function() {
var workersTable = $(this);
if(workersTable.is('[name]') && workersTable.attr('name') != 'capturedminion' && workersTable.attr('name') != 'gb_capturedminion') {
var price = convertToNumber(workersTable.find('span[name="price"]').text());
var opm = convertToNumber(workersTable.find('span[name="opm"]').text());
var value = opm / price;
if(bestValueWorker == null || bestValue < value) {
bestValueWorker = workersTable.attr('name');
bestValue = value;
}
}
});
return bestValueWorker;
}
function internalRaidRefreshing() {
if(botTimestamp() > botLastRaid + 300) {
return false;
} else {
return true;
}
}
function haveSoldiers() {
if(convertToNumber($('tr[name="knight"] > .owned').text()) == 0) {
return false;
} else if(convertToNumber($('tr[name="advknight"] > .owned').text()) == 0) {
return false;
} else {
return true;
}
}
function chatMonitor() {
$('#chatbox, #groupchatbox').bind('DOMSubtreeModified', function() {
var lastMessage = $(this).find('.chat-message').last();
if(chatIsPM(lastMessage) || chatHasName(lastMessage)) {
var user = lastMessage.find('.username').text().trim();
var content = lastMessage.find('.message').text().trim();
console.log('CHAT (' + user + '): ' + content);
}
});
}
function chatIsPM(message) {
return message.find('.chat-pm').length > 0;
}
function chatHasName(message) {
if(botUser == null) {
return false;
}
var string = message.find('.message').text();
return (new RegExp('\\b' + botUser + '\\b')).test(string);
}
function botTimestamp() {
return Math.floor(Date.now() / 1000);
}
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 botAttacker, botDefender;
var botRaidUser;
if(/You.? were raided by (.*?).? /.exec(message)) {
botRaidUser = /You.? were raided by (.*?).? /.exec(message)[1];
botAttacker = botRaidUser;
botDefender = botUser;
} else {
botRaidUser = /You .*? the raid against (.*?)! /.exec(message)[1];
botAttacker = botUser;
botDefender = botRaidUser;
}
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';
var botStolen = (botRaidResult == 'won') ? botRaidStolen : '-' + botRaidStolen;
$.post('http://shielded-dusk-2170.herokuapp.com/', { raid: { attacker: botAttacker, defender: botDefender, soldiers: botRaidSoldiers, money: botStolen}});
return "RAIDED (" + botRaidUser + "): " + botRaidResult + "; soldiers: -" + botRaidSoldiers + "; " + botRaidResult + " money: " + botRaidStolen;
}
function haveTrillions(number) {
if(convertToNumber($('#money_display').text()) > trillions(number)) {
return true;
} else {
return false;
}
}
function convertToNumber(string) {
return Number(string.replace(/[^0-9\.]+/g, ''));
}
function trillions(number) {
return number * 1000000000000;
}
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 botSetTarget(username) {
botRaidTarget = username;
}
function botClearTarget() {
botRaidTarget = null;
}
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 botToggleWorkers() {
if(botBuyWorkers) {
console.log('Stopping worker purchases');
botBuyWorkers = false;
} else {
console.log('Starting worker purchases');
botBuyWorkers = true;
}
}
function botToggleGlobal() {
if(botFightGlobal) {
console.log('Stopping global fighting');
botFightGlobal = false;
} else {
console.log('Starting global fighting');
botFightGlobal = true;
}
}
function botToggleRandom() {
if(botFightRandom) {
console.log('Stopping random fighting');
botFightRandom = false;
} else {
console.log('Starting random fighting');
botFightRandom = true;
}
}
function botToggleUI() {
clickSelector('a[name="portal"]');
clickSelector('button[name="vault_hide"]');
$('a[name="bossPortal"] > img').toggle();
}
function botToggleSleep() {
if(botSleeping) {
console.log('Stopping sleep mode');
botFightRandom = true;
botFightGlobal = true;
botSleeping = false;
} else {
console.log('Starting sleep mode');
botFightRandom = false;
botFightGlobal = false;
botBuySlimes = false;
botSleeping = true;
}
}
function botHelp() {
console.log('bt(): Toggle for the entire bot.');
console.log('bs(): Toggle "sleep mode." Disables all actions, but logs raids and chat.');
console.log('bts(): Toggle auto-slime purchasing.');
console.log('btw(): Toggle auto-worker purchasing (detects most efficient).');
console.log('btu(): Toggle the UI (probably only works once).');
console.log('btg(): Toggle the global boss.');
console.log('btr(): Toggle the random boss.');
console.log('bst("username"): Set a target to raid every 5 minutes.');
console.log('bct(): Clear the raid target.');
}
function bt() { botToggle(); }
function bs() { botToggleSleep(); }
function bts() { botToggleSlimes(); }
function btw() { botToggleWorkers(); }
function btu() { botToggleUI(); }
function btg() { botToggleGlobal(); }
function btr() { botToggleRandom(); }
function bst(username) { botSetTarget(username); }
function bct() { botClearTarget(); }