TUXDB - LINUX GAMING AGGREGATE
by NuSuey
NEWSFEED
▪️ GAMES
▪️ STEAM DECK ▪️ DEALS ▪️ CROWDFUNDING ▪️ COMMUNITY
tuxdb.com logo
Support tuxDB on Patreon
Currently supported by 8 awesome people!

🌟 Special thanks to our amazing supporters:


✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Arch Toasty][Benedikt][David Martínez Martí]


Alliances Update Final Patchnotes

Hey guys, These are the patch notes for the upcoming update! We'll set the update live during the next 24 hours. We've had a nice long testing period on the beta branch and we feel that the update is now stable enough to be released on the default branch. Should you run into any problems loading your old saves, please tell us immediately so we can fix it! We recommend making a backup of your saves though, just in case. We're also going to go back to smaller updates. We've released this update as a huge chunk of work and we're really happy about it, because we feel like these new contents worked well together. But we feel like releasing smaller updates in quicker succession is the better way to go. Large updates are hard to predict, which is already hard in software development, and we failed at making a clear timeline for this update. The size of this update was an experiment and we've come to realize that we and the community both prefer smaller and more regular updates. We will be posting a roadmap of what's planned for the future soon.

Alliances


  • Players can now found alliances
  • Invite other players to join your alliance
  • Alliances work like their own factions: They have money, resources and an inventory
  • Players can be assigned ranks, defining permissions in the alliance
  • All alliance members are visible to all other alliance members on the map
  • Alliance members share all information on the galaxy map
  • While flying an alliance ship, all actions represent the player's alliance

Co-Op Flying


  • Alliance ships can now be flown by multiple players
  • Added Seat Management for crafts to allow players to manage different tasks (steering, firing, etc.)

Out-of-sector simulation


"We'll be adding some more means for better control of which sectors will actually get updated on multiplayer servers. For now, sectors with lots of stuff will have a higher priority."
  • Sectors with player and alliance content are updated while the player is not inside the sector
  • Default amount of updated sectors per player on multiplayer is 6 (the sector the player is in, plus 5)
    • This value can be configured in the server.ini settings and will be a lot higher for singleplayer
  • If a player has property in more than 6 sectors, this happens:
    • Each sector will have a priority score
    • The 5 sectors with the highest scores will be updated
    • The score in the sectors is 3 for each player station, plus 1 for each player ship

Steam Workshop


  • Steam Workshop integration for ship and station models is complete
  • Saved ship plans can now be uploaded to the Steam Workshop
  • Subscribe to ship plans on the Steam Workshop

Gameplay


  • Added a new flight recorder block
    • Flight recorders will mark the death location of the ship on the map
    • Flight recorders will only work if they're *still on the ship* when the ship is destroyed
  • Trading posts always have dedicated cargo storage
  • Added licenses for stolen, dangerous and illegal cargo transportation
  • Added multiple mirror planes in building mode
  • Removed randomized building mode
  • Implemented whole ship modification
    • Scaling entire ships
    • Upgrading the material of entire ships
    • Rotating entire ships
  • Added selective block modification
    • All but one material or block type are faded out
  • Added a search field on the galaxy map
  • Turret factories sell a random, more expensive selection of the goods they require for building turrets
  • New Turret: Pulse Cannon
    • Pulse Cannons shoot ionized projectiles that have a very high chance of penetrating shields
  • Added respawning of resource-asteroids in sectors with large asteroid fields (will only be in effect for new sectors)
  • Removed collaboration component since Alliances replace this functionality
  • Added experimental backwards compatibility for saves created in the beta branch
    • A backup of the sector file will be created before converting, so no data will be lost if the conversion fails
    • Please report conversion errors in the forum or via the bugtracker so we can fix them!
  • Independent turrets now get their targets assigned by the server and no longer search them on the client
  • Mining and Salvaging AI commands now no longer continue when there was a player entering the ship

Balancing


"We're currently working on making shields less powerful, and one of the means to do that will be adding more weapons that are strong against shields, such as pulse cannons. But we also felt that plasma cannons didn't have the impact on shields that they were supposed to have, so we upped their damage to shields."
  • Doubled shield damage of plasma guns

Client


  • Reduced darkness of window shadows
  • Added a setting for limiting FPS
  • Improved rendering performance in sectors with lots of wreckages

UI


  • Improved performance of inventory grid displayers
  • Added filtering for inventory grid displayers
  • Added favoriting of inventory items with right mouse
  • Added marking of inventory items as trash with right mouse
  • Tooltips are only drawn when mouse is not obstructed by other windows
  • Improved borders of inventory items
  • Added loading screen tips for various new features
  • Added a button to sell all trash immediately
  • Added chat message channels for sector, group, everybody (default) and alliance
  • Added display of relative or total costs to saved ships window
  • Improved handling of multiline text boxes
  • Added a key for toggling strategy mode (default: F9)
  • Added an option to disable toggling of strategy mode by zooming
  • Added various tips about new or old features to the loading screen help
  • Gate connections now have a different color than wormholes on the map
  • Added a message when changing control scheme
  • Improved german translation
  • Added a textbox to quickly transfer lots of cargo and crew
  • Trading routes tab is disabled when trading module doesn't support it
  • Added a Beta Branch notification when starting the game

Server


"Most important changes here: Better performance on the server (memory and runtime) and improved savegame security."
  • Crafts that were destroyed through database corruptions can be restored
  • Players can be moved to other sectors, including ships (just rename the files if the names clash)
  • Player & Alliance files are saved redundantly to avoid loss of data on file corruptions
  • Improved performance when players log in
  • Improved overall networking performance
  • Improved overall memory performance using lazy initialization of collision data
  • Improved performance of traders in sectors without players
  • Added detailed output about script memory usage to /status command
  • Sector content is now compressed before being sent, reducing traffic when changing sectors by 70%
  • Server files are now compressed
  • Implemented whitelisting of steam groups
    • There's a separate file group-whitelist.txt in the server folder where you can add 64bit steam group ids that should be whitelisted
  • Improved traffic for normal sectors with players
  • Improved performance for sectors without players
  • Added more tracing and logging to server startup sequence
  • Added a time counter for online time of server
  • Fixed a major performance issue for armed ships near the barrier and the center of the galaxy
    • Large AI ships in the center of the galaxy no longer spawn with 50+ turrets
    • These ships now have less turrets but the turrets deal more damage so the lesser turrets are compensated

Scripting API


  • Entity IDs are now 128bit UUIDs
  • Script memory footprint reduced
    • Scripts that are attached to the same object are loaded into the same lua VM, if possible, to reduce redundant data
    • Added namespaces so scripts can be distinguished from each other and to avoid name collisions and functions getting overridden
    • Scripts that have DIFFERENT namespaces will be loaded into the SAME lua VM, since name collisions aren't expected to happen
    • Scripts that share the SAME namespace will be loaded into DIFFERENT lua VMs
    • Scripts that have a namespace must have a comment '-- namespace NAMESPACE' where NAMESPACE is the script's namespace
    • Scripts that have a namespace must have a namespace table with the same name as stated in the namespace comment
    • Scripts that have a namespace comment must prefix all non-local functions and variables with their Namespace table (see scripts for more details on this)
    • Scripts that have no namespace comment statement will always be loaded into different VMs (which is exactly the old model)
    • It is STRONGLY recommended to modders that they rework their scripts to use namespaces to save memory performance!
  • Lua VMs aren't set to invalid after a normal error, but still on fatal errors (exceptions)
  • [Documentation] Fixed methods of inherited script classes not showing up in completion docs
  • [Documentation] Fixed broken base classes when base gets a [client] or [server] extension
  • CheckBox can be enabled and disabled
  • CheckBox can be configured to have its box on the left or right side
  • TextBox can have a background text
  • Added a VanillaInventoryItem item that can be used for scripting inventory items
  • Fixed an issue with infinite recursion in printTable()
  • Added a PlanSelectionItem item that can be used in selection grids to display BlockPlans
  • Added functions to access all plans that are saved locally or downloaded via the Steam Workshop
  • Added Timer and Profiler classes
  • Implemented API for async script calls [while theoretically functional, still highly experimental]
  • Added a new "onPlanModifiedByBuilding" callback for when the Plan component is modified through building
  • Added a Physics component for manipulating physics of an entity
  • Added a property to Entity that allows setting a damage multiplier for that specific entity

Misc


  • Several small performance improvements all over the place
  • Improved logging
  • Reduced size of ship .xml files
  • Player is placed in last craft used upon login
  • Broken scripts are removed from scriptable objects on when loaded from database

Bugfixes


"As usual, user bug reports are marked with [UBR]. Thanks everybody for helping with the game!"
  • [UBR] Fixed extreme loading times due to too many inventory items
  • [UBR] Fixed a crash that occurred often during instanced rendering (asteroids and such)
  • [UBR] Fixed overflow of resources and money
    • Resources and money are now 64bit integers, meaning they can go up to 9.223.372.036.854.775.808
    • Overflowing is no longer possible
  • Fixed player being placed in his drone on use of /teleport command
  • [UBR] Fixed space bar not working sometimes in loading screen
  • [UBR] Fixed a hang when holo blocks decay due to missing repair crew
  • Fixed a (rare) player duplication issue
  • Fixed a crash when destroying/deleting a station
  • Fixed a crash when loading corrupt scripting values file
  • Fixed trading posts not having any cargo storage
  • Fixed a crash when loading an object with a script where the script file disappeared
  • [UBR] Fixed smuggler's market not working when too many stolen goods are on the ship
  • [UBR] Fixed a crash in patrol AI
  • [UBR] Fixed a crash in loading screen
  • [UBR] Fixed a crash when exiting the game while in strategy mode
  • [UBR] Fixed a crash when loading templates.xml
  • Fixed ships by faction on map not being saved/loaded correctly
  • [UBR] Fixed quick menu buttons being clickable through the building inventory
  • [UBR] Fixed keyboard and mouse up events not being registered in loading screens
  • [UBR] StructuralIntegrity effect is now always visible on the correct ship
  • Fixed translation of EnergyConsumer names
  • Fixed mining systems always showing asteroids for all players in a sector
  • [UBR] Fixed a crash in energy tab when resolution is too low
  • [UBR] Fixed auto pay crew not working in creative mode
  • Fixed an issue where repair docks would require negative payments by players
  • [UBR] Fixed roll being displayed as bad even when it's not when using gyros
  • [UBR] Fixed asteroids in the outer regions being sold for 0 credits
  • [UBR] Fixed normal cargo getting sold at smuggler's market instead of stolen cargo
  • Fixed several money scaling issues, money of stations and transactions scales correctly now with distance to the center
  • [UBR] Fixed a crash when discarding broken blocks and the repair brush is open
  • [UBR] Fixed an issue where the repair brush's diff'd blocks wouldn't disappear
  • [UBR] Fixed tooltip and default values of hyperspace upgrades
  • [UBR] Fixed a crash when loading corrupted groups file
  • [UBR] Fixed default server port not being able to be set via settings.ini
  • [UBR] Fixed a crash in AI orders script when assigning guard order
  • [UBR] Fixed trading overview not showing factory items
  • [UBR] Fixed trading overview tooltips
  • [UBR] Fixed an error in trading overview when max stock of a station's good is 0
  • [UBR] Fixed several divisions by zero crashing trading upgrade
  • [UBR] Fixed trading post not refreshing its UI
  • [UBR] Fixed a crash in building mode related to deletion of all blocks
  • [UBR] Fixed independent turrets having different targets on client and server
  • [UBR] Fixed independent turrets sometimes not shooting on the client
  • [UBR] Fixed brake thrust of ships being 0 in stats overview in shipyard
  • [UBR] Fixed salvaging or mining AI commands not stopping when there is no longer a captain
  • Fixed a huge server performance issue when undoing a ship transformation to a large ship in the building mode
  • Eliminate pirate mission terminates itself when there is no location (which happens mostly after server crashes)
  • Fixed speed particles being visible in strategy mode
  • [UBR] Fixed stations and asteroids getting stuck within each other forever and impairing performance
  • [UBR] Fixed an issue in faction database when starting the game in a directory linked via symbolic links
  • [UBR] Fixed faction war side decision triggering incorrectly when repairing ships of one side
  • [UBR] Fixed wrong tooltip description for repair beams
  • [UBR] Fixed incorrect spelling of zinc
  • [UBR] Fixed a crash in diplomacy tab when sorting or filtering
  • [UBR] Fixed a few issues with tutorial when creative mode is active
  • Fixed ships sometimes not moving when strafing


[ 2017-07-17 02:15:35 CET ] [ Original post ]



Avorion
Boxelware
  • Developer

  • Boxelware
  • Publisher

  • 2020-03-09
  • Release

  • Indie Simulation Singleplayer Multiplayer Coop
  • Tags

  • Game News Posts 295  
    🎹🖱️Keyboard + Mouse
  • Controls

  • Very Positive

    (11751 reviews)


  • Review Score

  • https://www.avorion.net/
  • Website

  • https://store.steampowered.com/app/445220 
  • Steam Store

  • The Game includes VR Support



    Avorion Linux Content [28.59 M]

  • Public Linux depots

  • Avorion - Black Market
    Avorion - Into The Rift
    Avorion - Behemoth Event Series
  • Available DLCs

  • Avorion is currently in Early Access, and is under active development. If you want to know more about that, please read the Early Access disclaimer at the top of the page.

    Several hundred years ago, a cataclysmic catastrophe nearly ripped your galaxy apart - an unsurmountable ring of torn hyperspace fabric appeared in the center of the galaxy, which normal hyperspace engines can’t overcome.

    Since this event nobody has managed to get near the central regions of the galaxy. All you know is that this event also spawned multiple unsurmountable hyperspace rifts throughout the entire galaxy, and that a strange race of aliens, the Xsotan, has appeared in the center. It looks like these aliens have found a way to surpass the torn hyperspace fabric, but so far nobody has managed to establish contact with them.

    There are also rumours about a strange new metal called ‘Avorion’, which has appeared in the center of the galaxy, around the same time as the Xsotan arrived. Apparently the aliens use this material to build their ships.

    Start out as a nobody at the edge of the galaxy and work your way to the center of a galaxy that gets more dangerous, but also more rewarding the closer you get to its core. Avorion takes sandbox aspects from games like X or Freelancer, throws in co-op multiplayer and lets you build your own ships. It features ships made of freely scalable blocks that can be procedurally generated and that break into pieces where they're hit in space fights.

    Combat

    Equip your ship with chainguns, lasers and other weaponry to take on your enemies and enjoy the sight of completely destructible ships breaking at the exact points where you hit them. Defend your allies from pirates, hunt down enemies for coin or even participate in wars between entire factions. Build hangars and command squads of fighters in your battles or destroy enemy freighters to steal their cargo.

    Explore

    Fly through beautiful nebulas and dense asteroid fields in search of hidden treasures and meet the many factions that populate and control their portion of the galaxy. Each faction has its own characteristics, such as peaceful, intelligent or aggressive, and has its own ship styles, meaning their ships and stations have a distinct look.


    Explore the galaxy at your own pace to find valuable goods in old ship wreckages, undiscovered asteroid fields rich of resources, unchartered asteroids which you can claim for yourself, or clues as to what happened during the event a few hundred years back.

    Build Your Fleet

    There are no limits to ship size or complexity besides your resources. You're not bound to the standard voxel style and while building an awesome ship in Avorion you won't get lost in lots and lots of micro-management. You can focus on building a great looking ship, without having too much trouble to make it work. But make sure you still keep an eye on your ship’s maneuverability or energy requirements. Adjust your ships perfectly to their operational purpose by building light and agile or heavily armored ships.


    Build specialized transport ships with lots of cargo space or heavily armored battleships with strong shields. Collect loot from defeated foes which you can use to upgrade your ship: New turrets, resources, trading goods or system upgrades. Install system upgrades that allow more weapons, ease asteroid mining or trading systems which detect trading routes over multiple sectors.

    And why build only one ship? Hire captains to fly your ships for you, manage your crews, weapons, hangars and fighters and build your own fleet of space ships!

    Trade

    Extend your ship with a cargo bay, find profitable deals and haul over a hundred trading goods through the galaxy to make a profit and buy your way up the food chain: Build up a trading corporation and extend your influence in the galaxy by founding asteroid mines and factories that attract NPC traders who will buy and sell their goods at your establishments.

    Co-op Multiplayer

    You don't have to fight the galaxy alone! Avorion features co-op multiplayer, so team up with your friends to build stations together and destroy pirates and enemy factions! Work together to extend your influence in the galaxy and build your own empire. Or, you know, blow them apart in large PvP battles. It's a sandbox, you can do whatever you want.


    In Avorion you choose your personal playstyle. Haul cargo, find profitable trading routes and found factories. Or maybe you're sick of being the good guy? Build your own battleship, equip it with powerful weaponry and blow away your enemies. Be the aggressor that starts wars with entire factions, raid freighters, smuggle illegal goods and scavenge old wreckages. Find your way to the center of a galaxy that gets more hostile, but also more rewarding the closer you get to its core.
    MINIMAL SETUP
    • OS: Ubuntu 12.04 or higher
    • Processor: Intel i5 @ 3.0 GHz or AMD equivalentMemory: 4 GB RAM
    • Memory: 4 GB RAM
    • Graphics: Nvidia Geforce 550 or equivalent (full OpenGL 3.0 support required)Network: Broadband Internet connection
    • Storage: 1 GB available spaceAdditional Notes: Middle mouse button. mouse wheel required. No Internet connection required for Singleplayer.
    RECOMMENDED SETUP
    • OS: Ubuntu 12.04 or higher
    • Processor: Intel i7 @ 3.3 GHz or AMD equivalentMemory: 6 GB RAM
    • Memory: 6 GB RAM
    • Graphics: NVidia Geforce 1050 / Radeon RX 460Network: Broadband Internet connection
    • Storage: 3 GB available spaceAdditional Notes: Middle mouse button. mouse wheel required. No Internet connection required for Singleplayer.
    GAMEBILLET

    [ 5951 ]

    5.77$ (17%)
    12.42$ (17%)
    20.00$ (50%)
    9.71$ (46%)
    4.95$ (17%)
    12.74$ (15%)
    6.01$ (14%)
    5.40$ (82%)
    24.98$ (58%)
    7.98$ (20%)
    12.59$ (16%)
    6.65$ (65%)
    4.09$ (18%)
    13.02$ (13%)
    16.79$ (16%)
    24.95$ (17%)
    16.71$ (33%)
    8.19$ (18%)
    1.93$ (90%)
    36.95$ (26%)
    4.50$ (70%)
    12.74$ (-28%)
    8.23$ (59%)
    3.92$ (72%)
    7.46$ (17%)
    1.83$ (8%)
    4.59$ (8%)
    2.79$ (79%)
    13.00$ (35%)
    41.31$ (17%)
    GAMERSGATE

    [ 3221 ]

    8.0$ (60%)
    5.99$ (40%)
    0.38$ (92%)
    4.34$ (71%)
    3.38$ (66%)
    10.58$ (47%)
    1.13$ (89%)
    1.0$ (80%)
    12.0$ (60%)
    8.43$ (44%)
    14.62$ (51%)
    1.8$ (90%)
    5.84$ (55%)
    2.25$ (92%)
    1.5$ (90%)
    9.4$ (53%)
    7.5$ (75%)
    4.4$ (78%)
    0.23$ (92%)
    2.93$ (77%)
    9.0$ (85%)
    12.79$ (36%)
    14.99$ (25%)
    8.44$ (66%)
    6.11$ (49%)
    4.5$ (70%)
    1.13$ (92%)
    6.56$ (74%)
    3.0$ (80%)
    14.99$ (50%)

    FANATICAL BUNDLES

    Time left:

    0 days, 5 hours, 56 minutes


    Time left:

    23 days, 5 hours, 56 minutes


    Time left:

    5 days, 5 hours, 56 minutes


    Time left:

    36 days, 5 hours, 56 minutes


    Time left:

    42 days, 5 hours, 56 minutes


    HUMBLE BUNDLES

    Time left:

    2 days, 23 hours, 56 minutes


    Time left:

    2 days, 23 hours, 56 minutes


    Time left:

    11 days, 23 hours, 56 minutes


    Time left:

    18 days, 23 hours, 56 minutes

    by buying games/dlcs from affiliate links you are supporting tuxDB
    🔴 LIVE