diff --git a/bot.js b/bot.js index 08b52c2..825d690 100644 --- a/bot.js +++ b/bot.js @@ -106,8 +106,19 @@ function mainLoop() { } } +botSetup(); botToggle(); +function botSetup() { + clickSelector('a[name="portal"]'); + clickSelector('button[name="vault_hide"]'); + $('a[name="bossPortal"] > img').toggle(); +} + +function botTimestamp() { + return Math.floor(Date.now() / 1000); +} + function botFillIn(selector, text) { $(selector).val(text); }