is there a way to gift you a bundle so you can get a page of keys? or is one bundle not enough to sufficently use ?
Comment has been collapsed.
I'm happy to gift a bundle too so we can make this happen
Comment has been collapsed.
Yes it would help with support for the reveal button.
For now, I made this:
https://greasyfork.org/en/scripts/27232-groupees-exporter
It will export all unused keys and mark them as used.
Just make sure everything you want is loaded on https://groupees.com/purchases (scroll down) and it should work fine.
Comment has been collapsed.
Yes it would help with support for the reveal button.
For now, I made this:
https://greasyfork.org/en/scripts/27232-groupees-exporter
It will export all unused keys and mark them as used.
Just make sure everything you want is loaded on https://groupees.com/purchases (scroll down) and it should work fine.
Comment has been collapsed.
Wow you work fast :) Already this is speeding up the process hugely :) Only problem I have found so far (and it is just a small one) is if a game is listed with acompanying DLC such as REALMS OF ARKANIA: BLADE OF DESTINY + FOR THE GODS DLC in Buid a Bundle 28, the names and codes are harvested and exported fine but the 'used' button does not get clicked for either. Minor issue, though, nothing major.
Let me know how I can gift you a couple of bundles and I will do it :)
Comment has been collapsed.
Have just sent four bundles:
Casual Bundle 10
The Mac Bundle
Build a Bundle 28
Build a KISS Mega Bundle 3
One thing, the 'old' profile page of https://groupees.com/purchases doesn't seem to contain all unused Steam keys, as a more complete list appears on the 'new' profile page https://groupees.com/profile/products - if you could get it to work with that and have the 'reveal' thing done automatically it would be the perfect script :)
Thanks very much for building this script! If you need any more bundles let me know :)
Comment has been collapsed.
For now, I made this:
https://greasyfork.org/en/scripts/27232-groupees-exporter
It will export all unused keys and mark them as used.
Just make sure everything you want is loaded on https://groupees.com/purchases (scroll down) and it should work fine.
Comment has been collapsed.
oo thanks! you are a gem.
unfortunately i dont have games to test it out on, as ive already went thru the painstaking process once before, and since then i havnt been buying bundles so my page is blank to begin with
but i know it will be greatly appreciated by those who still bundle buy and have to go through that
so still my offer stands incase you need bundles to test things out on later on down the road . . .
good night! and bump before i sleep
Comment has been collapsed.
is there way to write a script to get all the IG keys from a bundle page fast ?
maybe even to a small csv file with game name, price, steam key, and number of bundled times? like the rachart... just with the key.
i'm sure more people would use it. and yes, i'm lazy :)
Comment has been collapsed.
I once owned ~10,000 keys, all bought from many retailers and bundle sites - all using different systems. I found it easier to make sure everything was in a spreadsheet so I know exactly what I have. Plus, when I do giveaways here it is easier to copy 200 keys from a spreadsheet than it is from four different sites.
Comment has been collapsed.
Here is some code that is more flexible than my userscript:
$(".profile-item").each(function() { $.ajax({ url: 'https://groupees.com/orders/' + $(this).data("id") + '?user_id=' + $(".fayepub").data("user"), converters: { 'text script': function (text) { return text; } }, success: function (js_code) { var html = eval(js_code.match(/var html \= \$\(.+\)\;/g)[0].slice(13, -2)); $(".product", "<div>" + html + "</div>").each(function() { var name = $(this).find("h3").text(); var key = $(this).find(".code").val(); var used = $(this).find(".usage").prop("checked"); if (key) formatHoweverTheFuckYouWant(name, key, used); }); } }); });
function formatHoweverTheFuckYouWant(name, key, used) {
console.log(name, key, used);
}
Edit the formatHoweverTheFuckYouWant
function with string name
, string key
and boolean used
as parameters for your preferred format and run the function at groupees.
Comment has been collapsed.
47,106 Comments - Last post 3 minutes ago by kbronct
14 Comments - Last post 13 minutes ago by FullMetalZ
49 Comments - Last post 15 minutes ago by blueflame32
4 Comments - Last post 30 minutes ago by ZPE
9 Comments - Last post 1 hour ago by Arvennios
23 Comments - Last post 1 hour ago by Foxhack
4 Comments - Last post 1 hour ago by nguyentandat23496
9 Comments - Last post 20 minutes ago by reallurker
175 Comments - Last post 23 minutes ago by samwise84
158 Comments - Last post 33 minutes ago by Shadowverse
10 Comments - Last post 43 minutes ago by Fluffster
786 Comments - Last post 50 minutes ago by MayoSlice
20 Comments - Last post 57 minutes ago by Ninglor03
69 Comments - Last post 1 hour ago by Vincer
Is there a script for gathering Groupees unused Steam codes from the new profile pages? https://groupees.com/profile/products
I have a ton of keys in there, and it's a massive pain to click each game, click reveal, copy name to spreadsheet, copy code to spreadsheet, click mark as used, repeat ad infinitum
Comment has been collapsed.