Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (async function clicker() {
- const MIN_CLICKS_PER_APPROACH = 10;
- const MAX_CLICKS_PER_APPROACH = 20;
- const MIN_DELAY_BETWEEN_APPROACHES_SEC = 2;
- const MAX_DELAY_BETWEEN_APPROACHES_SEC = 5;
- const SLEEP_DURATION_MIN_SEC = 20;
- const SLEEP_DURATION_MAX_SEC = 80;
- const SCORE_THRESHOLD = 5000;
- var button = document.querySelector('button[class^="game__field"]');
- var score = document.querySelector('p[class="energy__value current-value"]');
- function performClicks(numberOfClicks) {
- for (let i = 0; i < numberOfClicks; i++) {
- button.click();
- }
- }
- function getRandomInt(min, max) {
- return Math.floor(Math.random() * (max - min + 1)) + min;
- }
- function delay(duration) {
- return new Promise(resolve => setTimeout(resolve, duration));
- }
- while (true) {
- const scoreValue = parseInt(score.textContent, 10);
- if (scoreValue <= SCORE_THRESHOLD) {
- console.log("Score is 5000 or below, sleeping.");
- await delay(getRandomInt(SLEEP_DURATION_MIN_SEC, SLEEP_DURATION_MAX_SEC) * 1000); // Сон в секундах
- } else {
- const clicks = getRandomInt(MIN_CLICKS_PER_APPROACH, MAX_CLICKS_PER_APPROACH);
- console.log(`Performing ${clicks} clicks, then waiting for the next approach.`);
- performClicks(clicks);
- await delay(getRandomInt(MIN_DELAY_BETWEEN_APPROACHES_SEC, MAX_DELAY_BETWEEN_APPROACHES_SEC) * 1000); // Задержка в секундах
- }
- }
- })();
Advertisement
Comments
-
- как правильно бусты заполнить не могу понять их там много и какие именно нужно вписывать
-
- У меня у одного этот код не работает? Он якобы нажимается и энергия тратится только арбузы не прибавляются...
-
- Или мне кажется?
-
- Не работает после обновления. Можете поправить пожалуйста?
Add Comment
Please, Sign In to add comment
Advertisement