Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Can I add a bundle to my library so I can view it on the app?

A topic by b00g13 created Mar 08, 2022 Views: 8,337 Replies: 10
Viewing posts 1 to 8
(+3)

Pretty much what title says. I bought a bundle for Ukraine and I'm wondering if there is a way to view and download those games through the app.

Pinned ReplyAdmin

Mega bundles are now properly handled in the app. Please avoid running any scripts to hammer our server, there are only disadvantages as it can mess with how your account normally operates.

/updates/itch-app-bundle-support-launch-args-and-more

(+4)

/post/1500360


Apparently this is a requested feature, but the devs haven't done anything about it yet AFAIK

(+2)

Sadly, there isn't a way to unless you click download one by one on the website to add to your library. I wish that you could choose. I want these games in my Library, and having to click them one by one isn't preferable either because that just overloads the servers.

(2 edits) (+16)

I found a medium post that explained that you could add an addon to chrome and it would automatically click on the claim button for you.
However, that script didn't work 100% for me, so I updated it if anyone wants it :)

Here's the link to the medium guide:
https://medium.com/@stadja/auto-claim-your-itch-io-mega-bundle-games-c425f6a9c1a...

and then just use my changed script instead, not the most beautiful script, but it works:

// is there a game to claim ? if yes, claim it

console.log("Woo!!!");

 if ($('[value="claim"]') && $('[value="claim"]')[0]) {

console.log("Claiming game");

    $('[value="claim"]')[0].click();

     

// have I claimed a game ? If yes, go back

} else if($(".next_page")[0])

{

console.log("No Games found, going to next page");

$(".next_page")[0].click()

}

else if ($("a[href*='/bundle/download/']")[0]) { 

console.log("Going back!");

    $("a[href*='/bundle/download/']")[0].click();

// no game to claim, no game claimed, change page

}

(+1)

That is awesome, thanks

(+1)

Thank you very much!

Thanks for your advice!

(1 edit)

Thanks a bunch, LordDz.

(+3)

Here's a script I wrote for this. Easy to use, and it can be configured to work with any bundle.

https://github.com/nyghtly-derek/itchio-bundle-claimer

thank you, sir!