Jump to content

Welcome to the Forum!

The best place to exchange builds and ideas! Vote for the best ideas and suggestions here.

Join the Avorion Discord!

Connect with other passionate players and talk about the latest news.
Discord

DLC Avorion Into the Rift Out Now!

Now available on Steam!
Steam

Alliances Update Full Patchnotes


koonschi
 Share

Recommended Posts

  • Boxelware Team

Patch 0.12.7

 

Date: July 17th, 2017

 

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

 

Link to comment
Share on other sites

Hooray for the update!  :)

 

Did we ever get a kind of '/sethome' feature? I thought I remembered seeing it in the patch notes for one of the beta branch updates, but I didn't spot it here.

 

nvm I've played singleplayer a bit now and I found the 'use as a reconstruction site' option. Pretty expensive, but balanced at least.  ;)

Link to comment
Share on other sites

shield is useless on asteroid collision,hope shield can hold the asteroid impact, and hull so easy destroy by asteroid just 10m/s speed my avorion block just destroy by hitting a very small asteroid

 

You can lower or turn off collision damage.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...