It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
shall we play a game?

My current wishlist, comprising of 34 games costs a whopping $896. (I have neglected the current 25% discount on both crysis games, possibly due to the announcement of crysis 4 )

So, what is your current wishlist price, if u don't apply any discount on it, and will u be willing to pay that amount rt now....again..no discounts...i surely won't....
Post edited February 04, 2022 by de_v1to
My wishlist has 110 titles on it right now, so I don't really feel like adding all of it up. I think "a lot" is an accurate enough price tag. And no, obviously I would not be willing to pay all that right now. If I was, it wouldn't be a wishlist, it would all be in my library, wouldn't it?
avatar
Breja: My wishlist has 110 titles on it right now, so I don't really feel like adding all of it up. I think "a lot" is an accurate enough price tag. And no, obviously I would not be willing to pay all that right now. If I was, it wouldn't be a wishlist, it would all be in my library, wouldn't it?
you could open your browser console and do this.....to automate u clicking on all them buttons.

First, for both pages...open your console and paste this...

async function clickButtons(buttons){
for(let button of buttons){
button.click();

//wait for 1500ms
await new Promise(res => setTimeout(res,1500));}
}

From your wishlist page:

clickButtons([...document.querySelectorAll(`.product-state__price-btn.price-btn.price-btn--active`)]).then(() => console.log('all done'));

From the checkout page, to remove all things:
clickButtons([...document.querySelectorAll(`.form.order__games .product-row__option:nth-of-type(2)`)]).then(() => console.log('all removed'))
Post edited February 04, 2022 by de_v1to
My wish list is at 681. I would say it was at 250ish back in nov2020 when I stopped buying. Of the other 400 I would probably have brought half by now, but that’s that. As for cost, not totalling it, but obviously a lot would have been on sale, so just adding them up wouldn’t work anyways.
avatar
nightcraw1er.488: My wish list is at 681. I would say it was at 250ish back in nov2020 when I stopped buying. Of the other 400 I would probably have brought half by now, but that’s that. As for cost, not totalling it, but obviously a lot would have been on sale, so just adding them up wouldn’t work anyways.
jeez....i gotta add more lel
Of the 15 games I currently have on there, about $175. I'm probably not going to bother getting some of them since checking reviews and forums they don't seem to work properly or I already own them on console anyway. Granted double dipping would probably improve the experience since I don't have the DLC or they're stuck in 4:3.
Roughly 20 games for just shy of $400. In line with Breja's comment the answer is (obviously) no.

Some are just 'maybe someday' games at best, and even on sale I'm unlikely to buy them now much less at full price. A few I'm just monitoring, plus a few aren't even released yet (price is 'TBA' and not included in that dollar figure).

Heck, 2-3 of the games on my list are free and I still haven't 'bought' them, so...
low rated
Hey, thanks for the -de_v1to's wishlist calculator tool-! :)

How to run it for the full wishlist? (it only adds the current page items)
I have no clue as I have duplicate items on my wish list in some cases just to watch for which version of a game goes on sale. (Frostpunk GOTY is on sale right now, for example, but the regular version is not so ends up costing more.) There's also games on my wish list where the DLC expansions are only sold separate, and there's no need to add those to my wish list when I don't own the base game yet.

However at about 222, I really need to go through and toss some of it off. I'm never going to buy them all.
avatar
tag+: Hey, thanks for the -de_v1to's wishlist calculator tool-! :)

How to run it for the full wishlist? (it only adds the current page items)
what do you mean....if u go to your wishlist page and paste the code...it will add all items to your checkout....
Attachments:
gog_calc.png (313 Kb)
low rated
It was about 1500 but this highlights gogs checkout is crap where you can't properly select products or empty the full cart.
My wishlist is 52 deep at a value of $1281.55
avatar
§pec†re: It was about 1500 but this highlights gogs checkout is crap where you can't properly select products or empty the full cart.
@GOGDevs, plz implement this feature....it would be nice to checkout all your items at once, or remove all items....instead of going through it one by one/....
avatar
paladin181: My wishlist is 52 deep at a value of $1281.55
you know what u should do...update the post...during the big sale events... tell us how much u saved.... that is...if u are not buying em b4 o_O
Post edited February 05, 2022 by de_v1to
avatar
§pec†re: It was about 1500 but this highlights gogs checkout is crap where you can't properly select products or empty the full cart.
avatar
de_v1to: @GOGDevs, plz implement this feature....it would be nice to checkout all your items at once, or remove all items....instead of going through it one by one/....
avatar
paladin181: My wishlist is 52 deep at a value of $1281.55
avatar
de_v1to: you know what u should do...update the post...during the big sale events... tell us how much u saved.... that is...if u are not buying em b4 o_O
If I remember. Raw price isn't my deciding factor, but rather perceived value. Some games are easily worth $50 or $60 to me. Some aren't worth the $7 or $8 they are asking for. I still want to get the games, but not enough to part with the price of a sandwich.
avatar
de_v1to: you could open your browser console and do this.....to automate u clicking on all them buttons.
I definitely don't want everything on my wishlist added to my shopping cart. The following worked well enough for me, considering my wishlist only has one page.

var nums = [];
var sums = document.querySelectorAll(".product-row--wishlist:not([class*='is-tba']) .product-state__price");
for (i = 0, j = sums.length; i < j; i++) nums.push(parseFloat(sums[i].textContent));
console.info("This wishlist page costs " + nums.reduce((partial_sum, a) => partial_sum + a,0));
avatar
de_v1to: what do you mean....if u go to your wishlist page and paste the code...it will add all items to your checkout....
The wishlist only shows 100 items per page. If you have more than that, the code snippet must be run again on each page.