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

×
1. Remember playing in NFS Underground 2
2. Have got pimped your ride and like making tuning
3. Have got GOG Account and watch all grey discounts every time
4. Learn CSS and JS basics
5. Pimp your GOG
6. ???
7. Profit

PS. Riders on the Storm
Attachments:
Why does Capitalism have to be pink?

That sounds like you're calling them a pussy.

Let them be purple. They'd be good with that.
avatar
erbello: 1. Remember playing in NFS Underground 2
2. Have got pimped your ride and like making tuning
3. Have got GOG Account and watch all grey discounts every time
4. Learn CSS and JS basics
5. Pimp your GOG
6. ???
7. Profit

PS. Riders on the Storm
You have Driftmoon wishlisted. Buy it already! ; ) Good game.

Those colors, though. I dunno, man.
How should I put it...
avatar
tinyE: Why does Capitalism have to be pink?

That sounds like you're calling them a pussy.

Let them be purple. They'd be good with that.
It's just because value of percents range is between 50 and 100 colored by gradient from red to green and everything less than 50 is grey ;)
avatar
tinyE: Why does Capitalism have to be pink?

That sounds like you're calling them a pussy.

Let them be purple. They'd be good with that.
avatar
erbello: It's just because value of percents range is between 50 and 100 colored by gradient from red to green and everything less than 50 is grey ;)
That was a movie reference. :P

Reservoir Dogs

Steve Buscemi gets mad because he's Mr. Pink.
avatar
erbello: It's just because value of percents range is between 50 and 100 colored by gradient from red to green and everything less than 50 is grey ;)
avatar
tinyE: That was a movie reference. :P

Reservoir Dogs

Steve Buscemi gets mad because he's Mr. Pink.
Good to know bro :)
You know that games' discount expectations are absurd nowadays when a 50% off is red XD
Post edited May 09, 2018 by phaolo
avatar
tinyE: Why does Capitalism have to be pink?
Ever meet a Mary Kay rep? :)

http://mentalfloss.com/article/80034/story-behind-mary-kay-pink-cadillac
// ==UserScript==
// @name PIMPMYGOGv3
// @namespace http://tampermonkey.net/
// @version 0.3.1
// @description try to take over the world!
// @match https://www.gog.com/*
// @icon https://www.google.com/s2/favicons?domain=gog.com
// @grant none
// @require http://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==

(function() {
if(window.location.href.includes("/ajax/")) return;
'use strict';
function log(msg) { console.log("# PIMPMYGOG|LOG> "+msg+";") }
function debug(msg) { console.log("# PIMPMYGOG|DBG> "+msg+";") }
log("HELLO WORLD");
//==================================================================
let pimpmygog = {
forum_hideForumGames: function() {
let mytext = "[Forum game]";
let links = $(".topic_s a").each(function() {
let link = $(this);
let row = link.closest(".list_row_odd");
let babel = row.find(".babel_h");
if(link.text().startsWith(mytext)) {
row.hide();
}
});
},
forum_highlightLinks: function(mytexts,bg,color) {
let regex = new RegExp( mytexts.join( "|" ), "i");
let links = $(".topic_s a").each(function() {
let link = $(this);
let row = link.closest(".list_row_odd");
let babel = row.find(".babel");
if(regex.test(link.text())) {
babel.css("background",bg);
babel.css("color",color);
babel.css("border-radius","20px");
}
});
},
topbar_clearNotifications: function() {
// angular.element(document.body).injector().get('menuNotificationsRepository').deleteAllNotifications();
let menuTray = $(".menu-tray");
let item = $("<div></div>").addClass("menu-item");
let link = $("<a></a>");
link.attr("href","javascript:angular.element(document.body).injector().get('menuNotificationsRepository').dele teAllNotifications();");
link.text("CN");
link.addClass("menu-link");
menuTray.prepend(item.append(link));
},
store_colorDiscounts: function() {
setInterval(() => {
let tiles = $('[selenium-id="productPriceDiscount"]');
tiles.each(function() {
let colors = [ // 29,49,74,94,100
{color:"#757575",from:0,to:49}, // gray
{color:"#e53935",from:50,to:69}, // red
{color:"#fb8c00",from:70,to:89}, // orange
{color:"#43a047",from:90,to:99}, // green
{color:"#1e88e5",from:100,to:100}, // blue
];
let tile = $(this);
let value = tile.text().replace("%","").replace("-","");
try{
value = parseInt(value);
for(let c in colors) {
let color = colors[c];
if(value <= color.to && value >= color.from) {
tile.css("background",color.color+"").css("color","#000");
break;
}
}
} catch(e) {}
});
},2000);
},
store_filterByPercents: function() {
setInterval(() => {
try {
let hash = window.location.hash.substr(1);
let hashData = hash.split('&').reduce(function (res, item) {
var parts = item.split('=');
res[parts[0]] = parts[1];
return res;
}, {});
let percentsFrom = Number(hashData.percentsFrom);
percentsFrom = percentsFrom && percentsFrom >= 0 ? percentsFrom : 0;
let percentsTo = Number(hashData.percentsTo);
percentsTo = percentsTo && percentsTo >= percentsFrom && percentsTo <= 100 ? percentsTo : 100;
let productTiles = $('product-tile');
productTiles.each(function() {
let productTile = $(this);
let discount = $(this).find('[selenium-id="productPriceDiscount"]');
let discountValue = Number(discount.text().replace("%","").replace("-",""));
let title = $(this).find('[selenium-id="productTitle"]').text().trim();
if(discountValue >= percentsFrom && discountValue <= percentsTo) {
productTile.css("display","");
} else {
productTile.css("display","none");
}
});
} catch(e) {}
},2000);
},
darkTheme: function() {
//$('body').addClass('dark-theme');
$('body').removeClass('light-theme');
$('body').addClass('dark-theme');
//$('body').addClass('light-theme');
}
};
//==================================================================
pimpmygog.forum_hideForumGames();
pimpmygog.forum_highlightLinks(["giveaway","free","gifting"],"darkgreen","white");
pimpmygog.forum_highlightLinks(["removal","removed","removing","delisting","delisted"],"black","white");
pimpmygog.topbar_clearNotifications();
pimpmygog.store_colorDiscounts();
pimpmygog.store_filterByPercents();
pimpmygog.darkTheme();
//==================================================================
log("BYE WORLD");
})();
Post edited September 14, 2023 by erbello
[Script is updated]
GoG, my pimp ?...
avatar
phaolo: You know that games' discount expectations are absurd nowadays when a 50% off is red XD
I'm perfectly fine paying 25% off if it's something I want and know it's not going to get cheaper than that. Of course, it'd also be lower on my purchase priority, but still.

EDIT: Oh gosh darnit, this thread is necro'd. Should've known.
Post edited August 13, 2023 by Warloch_Ahead
avatar
Warloch_Ahead: EDIT: Oh gosh darnit, this thread is necro'd. Should've known.
Necro'd by the original author doesn't count. ;-)