What are your thoughts guys?
Oh by the way the pieces are ordered except the heatsinks.
I'm sad to hear you ordered the hardware mostly for VE hosting.
The VoidExpanse game server is 99% single-threaded. It means it practically cannot utilize more than one core. So you can have a motherboard with 4 CPUs and each one is 12 cores, but the game server will use only a single core, 1/48 of total power. The only way to utilize these much cores is to run multiple servers (48 total), but it doesn't make sense for you as you wanted to host a single huge galaxy - like a MMO.
There is a known problem in programming (not only in gamedev) - if an application/game was not designed to be multi-threaded from beginning, it's almost impossible to rewrite it to be multi-threaded anytime later - especially after tons and tons of code were written in a ~2 years by a programmer who suddenly left the team before the release of the game.
So, we thought a lot about paralleling processing of the star systems (so each one could take a dedicated core and we could utilize multiple processors) but it's impossible without rewriting the game server completely. And this is impossible for multiple reasons.
Also, VE modding is very limited - many important things are hardcoded in the game engine and API is very limited. Adding new content (ships, weapons of existing types, skills) is trivial, adding new quests/topics/AI is hard, everything else is almost impossible and often will require our very limited time to modify the game engine to expose new API methods...
Currently, we're working hard on CryoFall and the modding will be much simpler and enjoyable as described there
http://wiki.atomictorch.com/Renkei_Engine It will have much better modding features (C#, hot-reloading of assets and code, powerful debugging and logging tools) and allow absolute freedom for modders. It will be possible to host a server with custom mods, connect to it, automatically download the required mods - and play in a total conversion of the game, with completely different UI and (almost) everything else.