Posted December 05, 2015
Grargar
Insert cat to continue
Grargar Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Aug 2012
From Greece
Swampland
Swamp Hobo
Swampland Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Mar 2015
From Germany
Posted December 05, 2015
allogeneous
ok now...
allogeneous Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Dec 2013
From United States
Posted December 05, 2015
I received Saints Row 3!
Thanks GOG =D
Thanks GOG =D
DubConqueror
proud to be a social jus- tice warrior
DubConqueror Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Jun 2010
From Netherlands
Liberteer
New User
Liberteer Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Dec 2013
From Bosnia and Herzegovina
HypersomniacLive
The Reluctant Voter
HypersomniacLive Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Sep 2011
From Vatican City
Posted December 05, 2015
Wise decision. Now hop over here and pick something already!
unhealing
New User
unhealing Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Dec 2015
From United States
Posted December 05, 2015
Got Simcity 4 Deluxe. Seems fair to me. Haven't played Simcity in like a decade, so I'm sure it'll be fun/nostalgic
Post edited December 05, 2015 by unhealing
Liberteer
New User
Liberteer Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Dec 2013
From Bosnia and Herzegovina
DampSquib
Soup Dragon.
DampSquib Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Nov 2010
From United Kingdom
Posted December 05, 2015
A Golden Wake
Looks dreadful, oh well give it a go anyway.
Looks dreadful, oh well give it a go anyway.
socken
New User
socken Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Sep 2010
From United States
Posted December 05, 2015
So I decided to write a quick and dirty script to help people check their true odds of getting a game they already own on PC. I wrote it in powershell, and it does not appear I can attach the file in .ps1 or .zip format so I will place the code here. If you are on any modern version of Windows, it should run in the native powershell_ise.
Personal Results: I have just under a 30% chance of receiving a game I already own outside of GoG. It is a fairly high risk, and in my case, I would be better off purchasing as a gift and risk getting one of the 4 games I already own on GoG. I still carry the same risk of getting something I already have on Steam, but at least then I could gift it out.
Instructions: Copy everything below starting with # Mystery Sale List line to the script pane in powershell, then look through the $gameList, copy and paste each game you already own and either place in the $oGoG list, or the $oSteam list. In the powershell_ise.exe window, click the green arrow to run the script. I have left my lists in as an example of what it should look like, but obviously you should remove anything there that doesn't apply to your digital pile of games.
And now the code:
# Mystery Sale List
$gameList =
@(
'A Golden Wake'
'Agarest: Generations of War'
'Airline Tycoon Deluxe'
"Anna's Quest"
'Anodyne'
'Another World: 20th Anniversary Edition'
'Apotheon'
'Aquaria'
'Ascendant'
'Battle Realms + Winter Of The Wolf'
'Beatbuddy: Tale of the Guardians'
'Breach & Clear'
'Breach & Clear: Deadline'
'Broken Age: The Complete Adventure'
'Brutal Legend'
'Cities in Motion'
'Consortium: Master Edition'
'Crimsonland'
'Crusaders Kings: Complete'
'Dreamfall: The Longest Journey'
'Dust: An Elysian Tale'
'Elminage Gothic'
'Europa Universalis III Complete'
'Evil Genius'
'Gabriel Knight 20th Anniversary'
'Gemini Rue'
'Gone Home'
'Gray Matter'
'Gurumin: A Monstrous Adventure'
'Hearts of Iron II: Complete'
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Leisure Suit Larry: Reloaded'
'Lilly Looking Through'
'Long Live the Queen'
'Massive Assault'
'Pier Solar and the Great Architects'
'Raiden III Digital Edition'
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
"Shantae: Risky's Revenge - Director's Cut"
'SimCity 4: Deluxe Edition'
'Space Colony HD'
'Spelunky'
'Stronghold Crusader HD'
'Supreme League of Patriots Season Pass'
"The Bard's Tale"
"Tiny & Big: Grandpa's Leftovers"
'Train Fever'
'Triple Town'
)
# Place All Games Owned in GoG here
$oGOG =
@(
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"Tiny & Big: Grandpa's Leftovers"
)
# Place All Games Owned Elsewhere here
$oSteam =
@(
'Agarest: Generations of War'
'Anodyne'
'Ascendant'
'Beatbuddy: Tale of the Guardians'
'Brutal Legend'
'Dust: An Elysian Tale'
'Gemini Rue'
'Gone Home'
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
'Spelunky'
)
function Get-PercentOwned
{
param ([array]$MysteryList,[array]$OwnedGOG,[array]$OwnedSteam)
$result = $OwnedSteam.count / ($MysteryList.count - $OwnedGOG.count)
$result = [math]::round($result,2)
return $result
}
$get = Get-PercentOwned -MysteryList $gameList -OwnedGOG $oGOG -OwnedSteam $oSteam
$get *= 100
Write "There is a $($get)% chance you will receive a game you already own."
Personal Results: I have just under a 30% chance of receiving a game I already own outside of GoG. It is a fairly high risk, and in my case, I would be better off purchasing as a gift and risk getting one of the 4 games I already own on GoG. I still carry the same risk of getting something I already have on Steam, but at least then I could gift it out.
Instructions: Copy everything below starting with # Mystery Sale List line to the script pane in powershell, then look through the $gameList, copy and paste each game you already own and either place in the $oGoG list, or the $oSteam list. In the powershell_ise.exe window, click the green arrow to run the script. I have left my lists in as an example of what it should look like, but obviously you should remove anything there that doesn't apply to your digital pile of games.
And now the code:
# Mystery Sale List
$gameList =
@(
'A Golden Wake'
'Agarest: Generations of War'
'Airline Tycoon Deluxe'
"Anna's Quest"
'Anodyne'
'Another World: 20th Anniversary Edition'
'Apotheon'
'Aquaria'
'Ascendant'
'Battle Realms + Winter Of The Wolf'
'Beatbuddy: Tale of the Guardians'
'Breach & Clear'
'Breach & Clear: Deadline'
'Broken Age: The Complete Adventure'
'Brutal Legend'
'Cities in Motion'
'Consortium: Master Edition'
'Crimsonland'
'Crusaders Kings: Complete'
'Dreamfall: The Longest Journey'
'Dust: An Elysian Tale'
'Elminage Gothic'
'Europa Universalis III Complete'
'Evil Genius'
'Gabriel Knight 20th Anniversary'
'Gemini Rue'
'Gone Home'
'Gray Matter'
'Gurumin: A Monstrous Adventure'
'Hearts of Iron II: Complete'
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Leisure Suit Larry: Reloaded'
'Lilly Looking Through'
'Long Live the Queen'
'Massive Assault'
'Pier Solar and the Great Architects'
'Raiden III Digital Edition'
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
"Shantae: Risky's Revenge - Director's Cut"
'SimCity 4: Deluxe Edition'
'Space Colony HD'
'Spelunky'
'Stronghold Crusader HD'
'Supreme League of Patriots Season Pass'
"The Bard's Tale"
"Tiny & Big: Grandpa's Leftovers"
'Train Fever'
'Triple Town'
)
# Place All Games Owned in GoG here
$oGOG =
@(
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"Tiny & Big: Grandpa's Leftovers"
)
# Place All Games Owned Elsewhere here
$oSteam =
@(
'Agarest: Generations of War'
'Anodyne'
'Ascendant'
'Beatbuddy: Tale of the Guardians'
'Brutal Legend'
'Dust: An Elysian Tale'
'Gemini Rue'
'Gone Home'
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
'Spelunky'
)
function Get-PercentOwned
{
param ([array]$MysteryList,[array]$OwnedGOG,[array]$OwnedSteam)
$result = $OwnedSteam.count / ($MysteryList.count - $OwnedGOG.count)
$result = [math]::round($result,2)
return $result
}
$get = Get-PercentOwned -MysteryList $gameList -OwnedGOG $oGOG -OwnedSteam $oSteam
$get *= 100
Write "There is a $($get)% chance you will receive a game you already own."
skullmunky
New User
skullmunky Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Jun 2013
From United States
Posted December 05, 2015
I got Stronghold Crusader HD, which I probably never would've picked up on my own, but I've been meaning to try more RTS games anyway, so thanks GOG!
DubConqueror
proud to be a social jus- tice warrior
DubConqueror Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Jun 2010
From Netherlands
Posted December 05, 2015
Post edited December 05, 2015 by DubConqueror
Lin545
May. 24, 2022
Lin545 Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Jun 2011
From Russian Federation
Posted December 05, 2015
unhealing: Got Simcity 4 Deluxe. Seems fair to me. Haven't played Simcity in like a decade, so I'm sure it'll be fun/nostalgic
Doh! I am really happy for you mate! Nice catch! I got adventure game, it looked really good - yet I played these in my childhood and right now that game type is completely not my piece of meal. So donated to those who might be happier about it.
Liberteer
New User
Liberteer Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Dec 2013
From Bosnia and Herzegovina
Posted December 05, 2015
socken: So I decided to write a quick and dirty script to help people check their true odds of getting a game they already own on PC. I wrote it in powershell, and it does not appear I can attach the file in .ps1 or .zip format so I will place the code here. If you are on any modern version of Windows, it should run in the native powershell_ise.
Personal Results: I have just under a 30% chance of receiving a game I already own outside of GoG. It is a fairly high risk, and in my case, I would be better off purchasing as a gift and risk getting one of the 4 games I already own on GoG. I still carry the same risk of getting something I already have on Steam, but at least then I could gift it out.
Instructions: Copy everything below starting with # Mystery Sale List line to the script pane in powershell, then look through the $gameList, copy and paste each game you already own and either place in the $oGoG list, or the $oSteam list. In the powershell_ise.exe window, click the green arrow to run the script. I have left my lists in as an example of what it should look like, but obviously you should remove anything there that doesn't apply to your digital pile of games.
And now the code:
# Mystery Sale List
$gameList =
@(
'A Golden Wake'
'Agarest: Generations of War'
'Airline Tycoon Deluxe'
"Anna's Quest"
'Anodyne'
'Another World: 20th Anniversary Edition'
'Apotheon'
'Aquaria'
'Ascendant'
'Battle Realms + Winter Of The Wolf'
'Beatbuddy: Tale of the Guardians'
'Breach & Clear'
'Breach & Clear: Deadline'
'Broken Age: The Complete Adventure'
'Brutal Legend'
'Cities in Motion'
'Consortium: Master Edition'
'Crimsonland'
'Crusaders Kings: Complete'
'Dreamfall: The Longest Journey'
'Dust: An Elysian Tale'
'Elminage Gothic'
'Europa Universalis III Complete'
'Evil Genius'
'Gabriel Knight 20th Anniversary'
'Gemini Rue'
'Gone Home'
'Gray Matter'
'Gurumin: A Monstrous Adventure'
'Hearts of Iron II: Complete'
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Leisure Suit Larry: Reloaded'
'Lilly Looking Through'
'Long Live the Queen'
'Massive Assault'
'Pier Solar and the Great Architects'
'Raiden III Digital Edition'
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
"Shantae: Risky's Revenge - Director's Cut"
'SimCity 4: Deluxe Edition'
'Space Colony HD'
'Spelunky'
'Stronghold Crusader HD'
'Supreme League of Patriots Season Pass'
"The Bard's Tale"
"Tiny & Big: Grandpa's Leftovers"
'Train Fever'
'Triple Town'
)
# Place All Games Owned in GoG here
$oGOG =
@(
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"Tiny & Big: Grandpa's Leftovers"
)
# Place All Games Owned Elsewhere here
$oSteam =
@(
'Agarest: Generations of War'
'Anodyne'
'Ascendant'
'Beatbuddy: Tale of the Guardians'
'Brutal Legend'
'Dust: An Elysian Tale'
'Gemini Rue'
'Gone Home'
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
'Spelunky'
)
function Get-PercentOwned
{
param ([array]$MysteryList,[array]$OwnedGOG,[array]$OwnedSteam)
$result = $OwnedSteam.count / ($MysteryList.count - $OwnedGOG.count)
$result = [math]::round($result,2)
return $result
}
$get = Get-PercentOwned -MysteryList $gameList -OwnedGOG $oGOG -OwnedSteam $oSteam
$get *= 100
Write "There is a $($get)% chance you will receive a game you already own."
Great code!Personal Results: I have just under a 30% chance of receiving a game I already own outside of GoG. It is a fairly high risk, and in my case, I would be better off purchasing as a gift and risk getting one of the 4 games I already own on GoG. I still carry the same risk of getting something I already have on Steam, but at least then I could gift it out.
Instructions: Copy everything below starting with # Mystery Sale List line to the script pane in powershell, then look through the $gameList, copy and paste each game you already own and either place in the $oGoG list, or the $oSteam list. In the powershell_ise.exe window, click the green arrow to run the script. I have left my lists in as an example of what it should look like, but obviously you should remove anything there that doesn't apply to your digital pile of games.
And now the code:
# Mystery Sale List
$gameList =
@(
'A Golden Wake'
'Agarest: Generations of War'
'Airline Tycoon Deluxe'
"Anna's Quest"
'Anodyne'
'Another World: 20th Anniversary Edition'
'Apotheon'
'Aquaria'
'Ascendant'
'Battle Realms + Winter Of The Wolf'
'Beatbuddy: Tale of the Guardians'
'Breach & Clear'
'Breach & Clear: Deadline'
'Broken Age: The Complete Adventure'
'Brutal Legend'
'Cities in Motion'
'Consortium: Master Edition'
'Crimsonland'
'Crusaders Kings: Complete'
'Dreamfall: The Longest Journey'
'Dust: An Elysian Tale'
'Elminage Gothic'
'Europa Universalis III Complete'
'Evil Genius'
'Gabriel Knight 20th Anniversary'
'Gemini Rue'
'Gone Home'
'Gray Matter'
'Gurumin: A Monstrous Adventure'
'Hearts of Iron II: Complete'
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Leisure Suit Larry: Reloaded'
'Lilly Looking Through'
'Long Live the Queen'
'Massive Assault'
'Pier Solar and the Great Architects'
'Raiden III Digital Edition'
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
"Shantae: Risky's Revenge - Director's Cut"
'SimCity 4: Deluxe Edition'
'Space Colony HD'
'Spelunky'
'Stronghold Crusader HD'
'Supreme League of Patriots Season Pass'
"The Bard's Tale"
"Tiny & Big: Grandpa's Leftovers"
'Train Fever'
'Triple Town'
)
# Place All Games Owned in GoG here
$oGOG =
@(
'Inquisitor'
'Jade Empire: Special Edition'
"King's Bounty: Crossworlds GOTY"
"Tiny & Big: Grandpa's Leftovers"
)
# Place All Games Owned Elsewhere here
$oSteam =
@(
'Agarest: Generations of War'
'Anodyne'
'Ascendant'
'Beatbuddy: Tale of the Guardians'
'Brutal Legend'
'Dust: An Elysian Tale'
'Gemini Rue'
'Gone Home'
"King's Bounty: Dark Side - Premium Edition"
"King's Bounty: Warriors of the North Complete Edition"
'Rogue Legacy'
"Saint's Row - The Third"
"Saint's Row 2"
'Shadowrun Returns'
'Spelunky'
)
function Get-PercentOwned
{
param ([array]$MysteryList,[array]$OwnedGOG,[array]$OwnedSteam)
$result = $OwnedSteam.count / ($MysteryList.count - $OwnedGOG.count)
$result = [math]::round($result,2)
return $result
}
$get = Get-PercentOwned -MysteryList $gameList -OwnedGOG $oGOG -OwnedSteam $oSteam
$get *= 100
Write "There is a $($get)% chance you will receive a game you already own."
DeMignon
Dad but alive
DeMignon Sorry, data for given user is currently unavailable. Please, try again later. View profile View wishlist Start conversation Invite to friends Invite to friends Accept invitation Accept invitation Pending invitation... Unblock chat Registered: Jul 2011
From Other
Posted December 06, 2015
socken: ...
function Get-PercentOwned
{
param ([array]$MysteryList,[array]$OwnedGOG,[array]$OwnedSteam)
$result = $OwnedSteam.count / ($MysteryList.count - $OwnedGOG.count)
$result = [math]::round($result,2)
return $result
}
$get = Get-PercentOwned -MysteryList $gameList -OwnedGOG $oGOG -OwnedSteam $oSteam
$get *= 100
Write "There is a $($get)% chance you will receive a game you already own."
Liberteer: Great code! function Get-PercentOwned
{
param ([array]$MysteryList,[array]$OwnedGOG,[array]$OwnedSteam)
$result = $OwnedSteam.count / ($MysteryList.count - $OwnedGOG.count)
$result = [math]::round($result,2)
return $result
}
$get = Get-PercentOwned -MysteryList $gameList -OwnedGOG $oGOG -OwnedSteam $oSteam
$get *= 100
Write "There is a $($get)% chance you will receive a game you already own."