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

×
avatar
Swampland: Has the pool changed now that Broken Sword is part of the deals? The FAQ states that the mystery games differ from the usual deals.

Maybe bundles are exempt from that rule though.
I don't see any of the Broken Sword games in the list.
avatar
Swampland: Has the pool changed now that Broken Sword is part of the deals? The FAQ states that the mystery games differ from the usual deals.

Maybe bundles are exempt from that rule though.
avatar
Grargar: I don't see any of the Broken Sword games in the list.
Oh, my bad. I confused it with Broken Age.
I received Saints Row 3!

Thanks GOG =D
A thanks to Liberteer for a fair trade.
avatar
DubConqueror: A thanks to Liberteer for a fair trade.
No, thank you for much fairer trade :)

DUBCONQUEROR is an authentic Santa! :D
avatar
Moonbeam: Staying away from that squirrel!
Wise decision. Now hop over here and pick something already!
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
avatar
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
I wouldn't mind getting it either :)
A Golden Wake


Looks dreadful, oh well give it a go anyway.
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."
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!
astroclay gifted me Breach & Clear

Thanks again!

updated my list of Mystery Games I got.
Post edited December 05, 2015 by DubConqueror
avatar
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.
avatar
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!
avatar
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."
avatar
Liberteer: Great code!
Maybe, but the calculation is wrong, because the chance of getting a certain game isn't the same for each of them. Some titles a rare and others are common.