Steamworks is a set of APIs and tools that Valve provides to game developers and players free of charge. This includes things like the ability to ban disruptive players from playing your game in VAC-secured multiplayer servers, a forum for discussing your game, stats, achievements, leaderboards, the Steam Datagram Relay, matchmaking systems, language preferences, beta branches, the Steam Economy API (which allows any game with an inventory system to allow cross-game trading), the Steam Inventory Service (a free, hosted implementation of the Steam Economy API), game and DLC file management, the Steam Workshop (where player-created mods can be shared), screenshots, artwork, reviews, broadcasts, points shop items, and the list goes on.
Without more ado, here is my list of things I hope Valve adds or changes in Steamworks in 2024:
Achievement Groups
This is actually already a feature that is used by exactly one game I’m aware of: Team Fortress 2. Expanding the ability to group (and relatedly, manually sort) achievements to all games on Steam would make it easier for games that add new achievements after the game’s launch to denote that certain achievements are part of a DLC, or just to group achievements by theme. Maybe a player is only interested in achievements they can earn by playing as a medic, or only achievements for speedrunning levels.
My recommendations for this feature are:
- Make achievement groups availble to all games on Steamworks
- Allow achievements groups to be associated with a DLC so that players without that DLC don’t have achievements they can’t earn counted towards their completion of the game (this is a reason why many developers avoid adding achievements for DLC)
- Allow achievements to be re-ordered in the admin panel, rather than always being listed in the order they were added.
Inventory Service Additions
This is one area where Valve has already implemented some features I specifically requested because they felt they would be useful to a wide variety of games. Items can display the values of dynamic properties on the Steam community, add text to their descriptions based on accessories, and the data type (integer, boolean, etc.) for dynamic properties can be enforced. Other developers have also requested and had added features that I find useful, like BBCode formatting in item descriptions.
My recommendations for additions to the Steam Inventory Service in 2024 are:
- Time-limited items. Item definitions would be able to specify a validity duration in seconds (default infinite) and a rounding window in seconds (default 1). When an item is created, its creation time is rounded to the rounding window and then has the validity duration added to create the expiration timestamp. After the expiration timestamp, the item can no longer be used in exchange or consume actions and will eventually be removed from the player’s inventory (similar to a consume action, but not user-initiated). This could be used by a game to implement random weekly buffs per-player, special event items that are automatically deleted when the special event ends, and so on.
- “Complete the set” generators. Similar to how playtime generators are generators the player can trigger based on a set of criteria, “complete the set” generators would be generators that dynamically remove options from their bundle based on what a player has obtained from that generator in the past. “Complete the set” generators would have a loop count (default infinite), and when a “complete the set” generator is activated, it would record which option from its bundle was chosen on the player’s account.
On future generations, the options that have been chosen previously would be omitted from the bundle, so a “complete the set” generator that has a 50% chance of generating item A, a 30% chance of generating item B, and a 20% chance of generating item C might generate item A on the first attempt, and then on the second attempt it would act as if it was defined with a 60% chance of generating item B and a 40% chance of generating item C. Once all possibilities have been generated, the list of generated options is reset, and once the loop count is reached, the “complete the set” generator becomes a standard generator. - Exchanges that don’t consume one of their ingredients. This would be most useful when coupled with time-limited items. For example, a hidden time-limited item could be used to implement a crafting cost reduction or bonus to dropped items. Not consuming the time-limited item in this case would mean that the expiration time would not change due to a new item being generated from the exchange. This could also be used to implement “unlocking” a recipe. Although it is currently already possible to do this by generating a new copy of the “unlock” item from each craft, making the item non-consumed would make it easier to keep track of item IDs as the “unlock” item would not be repeatedly re-generated during a single play session.
- Custom Steam Community actions. This is a simple one, but possibly useful to a wide variety of games. The Steam economy service allows items to define buttons players can click to open links. For example, Team Fortress 2 uses this to display links to its community-run wiki. Another possible use would be opening a game-owned website where players can log in using OpenID and perform modifications on items that might not be safe to allow clients to do directly. Items with art on them could link to full versions of the art, similar to how Steam trading cards work.