
r/EpicGamesPC

ZERO PARADES: For Dead Spies (Disco Elysium's devs second game) has launched on the store!
store.epicgames.comI got tired of the Epic Games Store loading everything just to check free games, so I built this
I made a small website for tracking Epic Games mystery/free games and wanted some feedback.
I usually visit the Epic Games Store every week just to check and claim the free games on mobile, but the store feels a bit overloaded for that specific use case. Lots of banners, store content, and slower loading when all I want is:
- current free games
- next unlock timer
- upcoming mystery game info
So I made this for fun and for ease of use. It’s lightweight, mobile-friendly, and loads much faster than the official store for quickly checking free games:
It’s still a work in progress, so I’d genuinely like feedback:
- Is this actually useful?
- What should I improve?
- Anything confusing or missing?
Would appreciate honest opinions.
PC Dev Freebie|Steampunks Vs Skeletons: Adventure Puzzle Park
⚠️ Not part of Epic Games Usual Freebie Program ⚠️
❗PLEASE CHECK THE GAME AND DEV FIRST BEFORE YOU CLAIM IT❗
📝 Transactions Page (To see if you claimed or not)
⏩ Instant Checkout (Login to Epic Games first to use)
| Item | Instant Checkout |
|---|---|
| 🎮 Steampunks Vs Skeletons: Adventure Puzzle Park | BaseGame |
🎮 Steampunks Vs Skeletons: Adventure Puzzle Park
- ⌛ Rating/⛔ Blacklist|None
- ⏰ Available until UNKNOWN UTC (10k copies and until Dev switches to paid)
Spike Chunsoft confirm Danganronpa 2x2 will come to Epic Games Store
x.comThe games were switched around in the box art clues for the first set of Mystery Games. Here is a possible scenario if they have done the same for Game 3 and Game 4 this time as well.
Epic games clues
If the games will be reversed again id say there is a possibility for dead space remake. The hologram looks like isaacs mask to me.
Finally after 2 years THQ Nordic have fixed achievements for SpongeBob SquarePants: The Cosmic Shake
When THQ went through their games and added achievements Cosmic Shake had a weird issue where it had achievements on the store but when you played the game the overlay would show the old achievements (no XP, no trophy rarity) and they wouldn't sync up with the launcher but I just checked now and they are syncing up!
Mirage: A Biplane Adventure received a major update on Epic Games Store - - Drone Defense Mode.
Hey everyone!
I’ve just released a major update that adds a new Drone Defense mode to my solo dev game Mirage: Biplane Adventure. Players have to defend against waves of drones, earn upgrades between rounds, and try to survive the chaotic attacks on their bases and ships.
https://i.redd.it/s5oq2qdib32h1.gif
I also reworked the controls and camera system to make the gameplay feel better and more fluid overall.
You can play local split-screen if you have 2 controllers connected to your PC (the drone defense mode and the story mode as well).
The game is currently also discounted as part of the Epic Mega Sale.
Feedback is always really appreciated — especially from players who enjoy arcade flying games or local split-screen experiences.
CI Games has terminated it's contract with Epic for Lords of the Fallen 2 exclusivity
bankier.plNew colour clues for Mystery Game #3 & #4 from Epic Games twitter
x.com[Bloomberg] Jason Schreier - PlayStation studio business CEO Hermen Hulst told staff in a town hall Monday morning that the company's narrative single-player games will now be PlayStation exclusive, confirming Bloomberg's reporting from earlier this year.
Looks like PlayStation's single player games will no longer be coming to PC including EGS
Detroit become human might be one of the mystery game?
Well I have few points I thought of
First when I went to check out the game,it was priced in full price,no discount, A game that was going in 90 percent discount,is not discounted during sale,even though this might not prove anything,it might be one of the reason
Second ,the game's anniversary is coming up ahead,even though it was released to PC later, 25th may is their anniversary
3rd some of us will agree that the right side clue is showing some kind of building,(this is not a perfect point as other games also have buildings in their cover)
Well we might see other clues they drop,and who knows ,maybe my guess will be wrong,but let's wait n check
Since Game No.3 is banned in South Korea, could it be Mortal Kombat 11 or Mortal Kombat 1? Some of the symbols seem to match.
The Mortal Kombat II movie also released last week. Maybe a good strategy to promote the movie with a free game giveaway.
Mortal Kombat 1 is available on Epic Store, but Mortal Kombat 11 is not.
Downloading Epic Games Purchase History as a .txt File
so epic doesnt have a builtin way to export your library which is honestly annoying, but you can pull it from your purchase history pretty easily with a script.
first, head to https://store.epicgames.com/ and log in,
then just open dev tools (chrome: ctrl + shift + i), go to the console tab, paste the script below and run it.
when its done it dedupes everything, prints it in the console, and downloads a file called EpicGamesLibrary.txt with all your purchases sorted nicely.
(async () => {
const BASE =
"https://accounts.epicgames.com/account/v2/payment/ajaxGetOrderHistory?count=10&sortDir=DESC&sortBy=DATE&locale=en-US";
async function getPage(token = "") {
const url = token ? `${BASE}&nextPageToken=${token}` : BASE;
const res = await fetch(url, {
method: "GET",
credentials: "include",
headers: {
"accept": "application/json",
"x-requested-with": "XMLHttpRequest"
},
referrer: "https://www.epicgames.com/account/transactions"
});
return res.json();
}
async function getAllOrders() {
let token = "";
let allGames = [];
let page = 1;
while (true) {
const data = await getPage(token);
const games = data.orders.flatMap(order =>
order.items.map(i => i.description)
);
console.log(
`Page ${page} → Orders: ${data.orders.length} | Games: ${games.length} | NextToken: ${data.nextPageToken}`
);
allGames.push(...games);
if (!data.nextPageToken) break;
token = data.nextPageToken;
page++;
}
return allGames;
}
const games = await getAllOrders();
const uniqueGames = [...new Set(games)].sort();
console.log("TOTAL UNIQUE ITEMS:", uniqueGames.length);
console.log(uniqueGames);
// download txt file
const blob = new Blob([uniqueGames.join("\n")], { type: "text/plain" });
const a = document.createElement("a");
a.href = URL.createObjectURL(blob);
a.download = "EpicGamesLibrary.txt";
a.click();
})();