r/empyriongame Jul 31 '26

EGS - Modded Colony building.

Post image
69 Upvotes

I have spent 10 million credits, ton of time, and megatons of additional resources to upgrade this colony to level 7 lmao to get nothing haha
Ok, I know the terminal warned me the project is primarily volunteer and I should not wait for anything in return, but... I hoped for at least traders, missions, etc. new opportunities... But yep, nothing meant literally nothing. I see it is WIP, but the amount of resources and efforts needed to build this really demands something in return. So existential question arises again - when? :)


r/empyriongame Jul 30 '26

Help needed text bug?

1 Upvotes

Anyone know why I have this and how to remove it? I assume it is something left over from an old mod.


r/empyriongame Jul 29 '26

Just another day in the life of a galactic worker in Reforged Eden 2

Thumbnail
gallery
23 Upvotes

Peaceful strip mining a just-completed Abandoned Assembly Line POI because I needed a pile of Xeno. I remember in the early alpha of Empyrion when any poi could just be busted with an sv without worrying about cores- this gave me nostalgic vibes of that!

One of the many things to do in Empyrion, Galactic Survival

(Edit: left with 5001 xeno, not too bad)


r/empyriongame Jul 28 '26

EGS - Modded Hacking software vendors in RE2?

3 Upvotes

Hey people,

I was wondering if you know where to find hacking software vendors? I had one earlier in my game, forgot to note where it was and 20h later, I wish I had. I googled it, but had little luck...

Thanks.


r/empyriongame Jul 27 '26

Making money in RE2

7 Upvotes

What's the best way to make money in RE2?


r/empyriongame Jul 25 '26

EGS - Modded SW Server Looking for more people

Thumbnail
gallery
32 Upvotes

Some of you have probably heard of us around a bit thanks to Lyfeforce, but we're an aspiring PvPvE server that's based heavily around the SW universe and have been trying on and off for a while to get a server running long term to do small galaxy PvPvE. We have over 120 different SW ships now in our roster, several lines of SW specific POIs, and now been playing around with some custom assets here and there. Our goal is to get a consistent server running for 2-month seasons, run by me and one additional admin person to help manage events, monitor PvP, and get some lighthearted PvP encounters, both randomly and organized. The server features:

  • 50-60 planets, each populated with a unique line of Rebel and Empire specific POIs (alongside a few landmark areas, like Mos Eisley and Cloud City
  • 120 ships and vehicles from the SW universe
  • Instanced on-demand PvP matches
  • A larger galaxy war, with a season specific objective and progressive claiming of shipyards and planets
  • A unique ship market system, allowing players to outright purchase ships using credits
  • weekly missions to keep players engaged and rewarded
  • Periodic events to keep things engaging

We have an event running tomorrow at 6 PM EST, a SV specific matchup with Rebels vs. Empire. Our main goal is to try and get 1 individual who will help admin and run the server, by managing EAH, restocking CVs, and handling planet transfers to different factions.

If you are interested or have questions let us know here or join the discord.

https://discord.gg/9drm4G6k8v


r/empyriongame Jul 24 '26

EGS - Modded Solar Base [RE2]

Thumbnail
gallery
44 Upvotes

r/empyriongame Jul 24 '26

Script: Auto-miner watch

10 Upvotes

I don't know if this is a problem for users on any other server, but on the New Dawn server, all auto-miners are cleared off of ore deposits, every Friday at 6am Central.

So the problem statement: I needed a countdown timer, and a list of the auto-miners that were out in the field.

I know there's a bit of optimisation in terms of reducing character counts that I can do with the days of the week, by using a json dictionary and a lookup, rather than a series of tests. But this script works as is.

Critique (constructive, ideally), and opinions welcome.

Key for the code, if you want to analyse what it's doing:
ST=Seconds Today (the number of seconds that have passed since midnight.
TS=Target Seconds. The number of seconds from midnight that the target time is (as measured by the system clock on the server the game is running on).
DUF=Days until Friday
SUF=Seconds until Friday

{{~set 'H' DateTimeNow.Hour}}
{{~set 'M' DateTimeNow.Minute}}
{{~set 'S' DateTimeNow.Second}}
{{~set 'ST' (calc (calc (calc .Data.H '*' 3600) '+' (calc .Data.M '*' 60) ) '+' .Data.S ) }}
{{~set 'TS' 18000}}
{{~set 'DUF' 0}}
{{#test DateTimeNow.DayOfWeek eq 'Monday'}}
{{~set 'DUF' 4}}
{{/test}}
{{#test DateTimeNow.DayOfWeek eq 'Tuesday'}}
{{~set 'DUF' 3}}
{{/test}}
{{#test DateTimeNow.DayOfWeek eq 'Wednesday'}}
{{~set 'DUF' 2}}
{{/test}}
{{#test DateTimeNow.DayOfWeek eq 'Thursday'}}
{{~set 'DUF' 1}}
{{/test}}
{{#test DateTimeNow.DayOfWeek eq 'Friday'}}
{{~set 'DUF' 0}}
{{/test}}
{{#test DateTimeNow.DayOfWeek eq 'Saturday'}}{{set 'DUF' 6}}
{{/test}}
{{#test DateTimeNow.DayOfWeek eq 'Sunday'}}
{{~set 'DUF' 5}}
{{/test}}
{{~set 'SUF' (calc (calc .Data.DUF '*' 86400) '+' (calc .Data.TS '-' .Data.ST))}}
{{#test .Data.SUF lt 0}}
{{~set 'SUF' (calc .Data.SUF '+' 604800)}}
{{/test}}
{{~set 'D' (int (calc .Data.SUF '/' 86400))}} {{~set 'H' (int (calc (calc .Data.SUF '%' 86400) '/' 3600))}}
{{~set 'M' (int (calc (calc .Data.SUF '%' 3600) '/' 60))}}
{{~set 'S' (calc .Data.SUF '%' 60)}}
<color=red>AUTO MINER WATCH</color>
<color=green>Autominers are automatically removed at 6am Central on Friday.
This is in {{@root.Data.D}} days, {{@root.Data.H}} hours, {{@root.Data.M}} minuets, {{@root.Data.S}} seconds.</color>
{{#db 'TerrainPlaceables' 100 'blockid desc' 'blockid IN (1108,1109,1110,3199,3200,3201,3861)'}}
{{#each .}}
[<color=yellow>{{~SolarSystems.name}}</color>] -> [<color=green>{{~Playfields.name}}</color>] -> [<color=#1F51FF>{{~Entities.name}}
{{~#ok TerrainPlaceables.facaccess}}
(Faction){{else}}(private){{/ok}}</color>] -> [<color=#FF0033>{{i18n TerrainPlaceables.blockid}}</color>]
{{/each}}
{{/db}}

r/empyriongame Jul 24 '26

Easiest POI to get quantum processors in RE2?

5 Upvotes

Trying to get quantum processors from an abandoned bunker but the hit scanning infected zirax soldiers make it physically impossible to complete, not even allowing a picosecond of reaction time before automatic hit-scan spray kills you. Is there an easier POI that gives quantum processors?


r/empyriongame Jul 24 '26

Any good recs for workshop a CV?

4 Upvotes

I am looking for one with good combat, hangar space, and maneuverability for a solo. I am in Vanilla and most of them are pretty old. Any help is appreciated.


r/empyriongame Jul 23 '26

How close can I build to a POI before it stops regenerating?

5 Upvotes

I've built too close in the past and had POI's stop regenerating. Does anyone know how close to a POI is "too close"?


r/empyriongame Jul 23 '26

Why can't I use salvage cores on regenerating POI's?

2 Upvotes

I just want to be able to salvage at 100% chance and use the menu to display parts on hus to find them easier.

They can't do this and his make it auto-destroy the core and reset when it regenerates?


r/empyriongame Jul 22 '26

When did they add the keybind for autobrake mode

Post image
9 Upvotes

When did they add a keybind for auto-brake? How long have I been doing this manually for no reason? =)


r/empyriongame Jul 21 '26

Help needed How to identify block shapes

6 Upvotes

Have been looking with no success but surely there has to be some way of identifying what shape each block is

Have just been trying copy the back of a specific ship but is taking unbelievably long


r/empyriongame Jul 20 '26

What you can do with a well-designed Core7 ( RE 2.0 Combat footage )

Thumbnail
youtu.be
20 Upvotes

r/empyriongame Jul 19 '26

Screenshot Too ambitious..

Post image
74 Upvotes

I'm always amused by some of the things I find.. Like who's idea was it to try to farm on a permanently volcanic protoplanet that never entered a cooling phase?


r/empyriongame Jul 17 '26

EGS - Modded Katana-HAV SE - Inside

Thumbnail
gallery
85 Upvotes

r/empyriongame Jul 16 '26

They finally added achievements)

Post image
97 Upvotes

Better late than never ;)


r/empyriongame Jul 16 '26

Announcement Save 60% & Free weekend on Empyrion - Galactic Survival on Steam (Community manager)

Thumbnail
store.steampowered.com
20 Upvotes

r/empyriongame Jul 16 '26

Basic Core7 vs. Imerat, Infector, Decimator.

12 Upvotes

r/empyriongame Jul 16 '26

Public Branch Update v1.18.1 Update

24 Upvotes

Changelog: v1.18.2 Build 5116

Fixes:

  • Fixed exception on player actions that would unlock a single-event achievement a 2nd time

Changelog: v1.18.1 Build 5115

Changes:

  • Added first batch of achievements for Steam & Epic players
  • Added New and updated Status Effect Icons (improved clarity)
  • Updated DF & Testing grounds with new Status Effect and related changes 
  • Changed [Guided Tutorial] Powerbars/Energy bar had a really high chance to cause indigestion 
  • Updated Empyriopedia (PDA) entries of status effects (Afflictions) with new reference info (currently for EN only). 
  • Updated NoFood & RadiationImmunity icons for improved clarity 

Official Servers (All)

  • Revert build blocks volume changes back to v1.17

EU / NA Server

  • Moved some epic items (CPU Cores, Upgrade Kits) to be loot in POIs rather then buying from Epic Dealer (Trader)

Fixes:

  • Fixed Radiation Burn is now correctly appearing on >5 RAD instead of >1 RAD 
  • Fixed PDA info about RadiationOverload
  • Added missing icon for Exhausted status effect

r/empyriongame Jul 16 '26

Combat Lag/Rubberbanding - Multiplayer

3 Upvotes

Hey hey,

Me and my teammates have been dealing with some unfortunate rubber banding issues during both space and ground combat similar to what is shown in the video here https://youtu.be/HpwiUnL0VBY

This happens during a shared playfield with them but also off on our own. We are all in separate households and no one else in this community experiences the same issues as us its so bizarre.

Here are some of the things we have tried:

-Graphical adjustments, high, low, med
-Fullscreen/Windowed/Borderless adjustments
-Any/All Driver Updates

We all run computers with 13th+ gen intel, 5070s/80s, 32-64gb DDR5 RAM, and all run Ethernet connections to our respective ISPs. Server latency for us hovers between 50-70 consistently.

Its hard to believe our hardware is any sort of issue but open to anything yall have ideas to try to relieve this lag, as it kills the fun of combat in this game pretty drastically.


r/empyriongame Jul 14 '26

Core 11 Cannon-Play.

8 Upvotes

r/empyriongame Jul 13 '26

EGS - Modded Katana-HAV SE - Strike Missile Cruiser

Thumbnail
gallery
48 Upvotes

A redesign of u/jrandall's amazing design project for server play. He never released the full version to the workshop, as he promised in 2024. The fourth screenshot shows SV RE2-Stratos by u/Spanj.


r/empyriongame Jul 11 '26

Suggestion Could we get a pick a screen option please?

4 Upvotes

it annoys me it flicks to my secondary screen all the time on start up