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.
22 Comments - Last post 23 minutes ago by afa1425
3 Comments - Last post 54 minutes ago by WaxWorm
34 Comments - Last post 1 hour ago by 538UL84
898 Comments - Last post 7 hours ago by InSpec
704 Comments - Last post 9 hours ago by JJJ7
1,036 Comments - Last post 10 hours ago by sensualshakti
1,942 Comments - Last post 11 hours ago by MeguminShiro
439 Comments - Last post 2 minutes ago by imminiman
145 Comments - Last post 22 minutes ago by carefree
28 Comments - Last post 39 minutes ago by NoYeti
2,033 Comments - Last post 44 minutes ago by AndyyOak
110 Comments - Last post 53 minutes ago by lindax
9,460 Comments - Last post 1 hour ago by afa1425
82 Comments - Last post 1 hour ago by NoYeti
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.