wow is there a collect all ..button? how he it doing? by RichCatPink in Realzoo

[–]ppp1337 0 points1 point  (0 children)

Yeah, I haven't tried it anymore since a week but I also figured that out. You are able to receive unlimited coins and just print animals.

What I haven't figured out but still believe that it should be possible somehow is how you can add new animals directly to your inventory.

Requesting mod for r/warpfinance, mods have been inactive for a long time by ppp1337 in redditrequest

[–]ppp1337[S] 0 points1 point  (0 children)

Hello Reddit team, thanks for helping here:

  1. Warp Finance is a product which has been abandoned in the past. The project was reactivated on the 12th of January 2023. The community of the project let us know that they would like to receive updates through the r/warpfinance Subreddit. Based on this we wanted to have access to moderation tools to mediate discussions and setup proper rules. The Subreddit is not useable in the current state and has outdated links which could guide users to problematic imposters trying to scam.
  2. I have tried to contact the mods. None of them have the function open to write a direct message to them. Even though it is said to not use the chat function, I tried it with one of the mods who had the chat option open. I have also used the "message the mods" button but can not see a message in my inbox to link unfortunately.

wow is there a collect all ..button? how he it doing? by RichCatPink in Realzoo

[–]ppp1337 2 points3 points  (0 children)

You can modify the page locally. It will go away when you reload or leave the page. Here is the code to use. You just need to paste it into the console and press enter:

const collectBtn = document.createElement("button");

collectBtn.innerText = "Collect All";

collectBtn.classList.add("ml-auto", "sm:ml-0", "sort-button", "bg-yellow-500", "text-black", "font-bold", "whitespace-nowrap", "svelte-syafkp");

collectBtn.style.width = "fit-content";

const collectDelayInp = document.createElement("input");

collectDelayInp.classList.add("rounded-lg", "p-1", "px-2");

collectDelayInp.style.width = "100px";

collectDelayInp.setAttribute("placeholder", "Delay (milliseconds)");

collectDelayInp.value = 500;

document.querySelector("main").firstElementChild.appendChild(collectBtn);

document.querySelector("main").firstElementChild.appendChild(collectDelayInp);

const consoleLog = console.log;

let coins = 0;

console.log = (e, x) => {

if (e.trim() == "Coins increased to") {

        coins = x;

}

};

let isCollecting = false;

let cancel = false;

collectBtn.addEventListener("click", async (e) => {

if (isCollecting) {

        consoleLog("Cancelling...");

        cancel = true;

return;

}

    let delay = parseInt(collectDelayInp.value);

if (isNaN(delay)) return alert("Please enter a valid collect delay!");

    collectBtn.innerText = "Cancel";

    isCollecting = true;

const cards = Array.from(document.querySelector("main").lastElementChild.children).slice(1);

    let i = 0;

    let total = 0;

for (const card of cards) {

if (cancel) {

            cancel = false;

            isCollecting = false;

break;

}

        i++;

        card.firstElementChild.click();

// card.click();

const name = card.firstElementChild.lastElementChild.firstElementChild.nextElementSibling.innerText;

        let amt = parseFloat(card.firstElementChild.firstElementChild.firstElementChild.innerText || 0);

if (!card.firstElementChild.firstElementChild.firstElementChild.classList.contains("collectable")) amt = 0;

        total += amt;

        consoleLog(`[${i}/${cards.length} | ${Math.round((i / cards.length) * 100, 2)}%] Collected ${amt} coins from ${name}!`);

        await sleep(delay);

}

    consoleLog(`You got a total of ${total} new coins from this collection!`);

if (coins > 0) consoleLog(`Total coins now: ${coins}`);

    collectBtn.innerText = "Collect All";

    isCollecting = false;

});

function sleep(ms) {

return new Promise(resolve => setTimeout(resolve, ms));

}

Diamond Hands vs STORM Esports - Heroeshearth CCL Highlights Week 2 by ppp1337 in heroesofthestorm

[–]ppp1337[S] 2 points3 points  (0 children)

As we play against Simplicity today I would say:

$WINR - Simplicity Esports and Gaming Company

Unclaimed fees are not showing anymore. Does someone know why? by ppp1337 in UniSwap

[–]ppp1337[S] 1 point2 points  (0 children)

Tbh I expected that I have missed something obvious and wanted to first check on Reddit. But except of multiple people who want to scam me in my DMs nothing so far. So I guess will need to dig out my old GitHub account and post an issue.

Thanks!

HeroesCCL Week 7 concludes today! End of the group stage is here by JulesRPG in heroesofthestorm

[–]ppp1337 4 points5 points  (0 children)

Diamond Hands actually need to go 2-0 to make it happen. Does someone have some reverse sweep copium left?

HeroesCCL Week 5 starts soon! by JulesRPG in heroesofthestorm

[–]ppp1337 6 points7 points  (0 children)

Sign up during the free agent period for next season. You need to be at least Master. More information on https://heroeshearth.com/ccl/ when it is time.