Starfield Best Skills to Get Early in 2026
These are the BEST skills you need to unlock EARLY in Starfield!
These are the BEST skills you need to unlock EARLY in Starfield!
Here is everything you need to know about Starfield on PlayStation 5, including the release date, DualSense features, PS5 Pro modes, editions and pricing, file size, and what is included at launch.
Here is everything you need to know about the current state of Starfield in 2026, including what has changed since launch, what is new this year, and whether the game is worth your time.
Dependencies: none.Just an replacement for default Tamriel Tomes UI (with some features in mind).Addon is newly created, but it already- Has keybind- Sorts rewards by cost- Shows everything on one screen- Shows everything default UI shows (including reward preview)- Has buy feature (double click on item)TODO- Better description- Multiple items preview (? if possible)- Anything you suggest
Icons for the OdySupportIcons addon by the Eisherz guild.DEPENDENCIESOdySupportIcons
This starfield leveling guide covers everything you need to know to gain levels quickly and build a powerful character in Starfield!
LibPriceCache Central Price Library for ESOVersion: 1.1.0 | Author: Hyborem & Grok | Language: English📦 MAIN FEATURES Price aggregation collects and averages prices from TTC, MM, ATT, ESO‑Hub, UESP Own price database stores prices in 4 separate categories (gear, items, consumables, crafting) UI price override replaces sell values in inventory and guild store Tooltips shows average and detailed prices in item tooltips Item scanning automatic queuing and price fetching API for other addons simple LPC_GetPrice(link) functionđź”§ REQUIREMENTS (mandatory) LibAddonMenu-2.0 LibSavedVars LibCustomMenu📡 RECOMMENDED (for full data) Tamriel Trade Centre Master Merchant Arkadius Trade Tools (ATT) LibEsoHubPrices uespLogSalesPrices Inventory Insight (IIfA)đź’ˇ DESCRIPTION & USE CASESLibPriceCache is a lightweight library that collects item prices from popular trading addons (TTC, MM, ATT, ESO‑Hub, UESP), stores them in a centralised database and provides an averaged price. Additionally, it can override the displayed sell prices in the inventory and guild store, and enrich tooltips with market prices.For regular players: After installing and enabling all recommended trading addons, LibPriceCache will automatically show an averaged market price (and per‑source prices) in item tooltips. You can also enable Override inventory prices in the settings the inventory sell price will then show the calculated market price instead of the vendor price (useful when listing items on a guild store).For addon developers: The library provides a simple API just call LPC_GetPrice(itemLink) to receive an average price (or nil if no data is available). All internal functions are described in the technical section.⚙️ CONFIGURATION & OPTIMISATIONFirst run: Play for a few days with all trading addons (TTC, MM, ATT, ESO‑Hub, UESP) enabled the library will collect item IDs and prices. The more data, the more accurate the calculations.Quick full‑account scan: Install Inventory Insight (IIfA) and enable Auto‑scan IIfA on login in LPC settings. The library will then scan every item on your account (bank, craft bag, alts) and add them to the price queue.Manual scanning: Use /lpcscan scans backpack, bank and guild bank and adds items to the queue. /lpcfulldbscan refreshes prices for all items already in the database.UI price override: Enable Override inventory prices in the settings. You can choose whether to show the stack price, unit price, or both. Sorting by the Value column in the inventory will now use the LPC stack price instead of the vendor price.Guild store integration: When Override guild store prices is enabled, prices in guild store search results will be replaced with LPC average prices.🎮 SLASH COMMANDS/lpcscan quick scan of inventory/bank/guild bank/lpcfulldbscan full price refresh for all known items/lpcguildscan scan all guild store listings/lpcrescan full rescan (IIfA + database + guild store)/lpcscanii manual IIfA scan/lpcstatus shows addon status and last scan date/lpcpo toggles UI price override (requires /reloadui)🛠️ TECHNICAL SECTION FOR ADDON DEVELOPERSLibPriceCache is designed as a library it can be used by other addons to retrieve averaged item prices. Below is a description of the architecture and API.1. Global API functionLPC_GetPrice(itemLink) → number or nilReturns the weighted average price of an item (weights are taken from user settings). If no data is available or the item is bound, returns nil.2. Database structureData is stored in 4 modules (LPC01LPC04), each as a separate SavedVariable:LPC01 gear (weapons, armour, jewellery)LPC02 general items (materials, recipes, motifs)LPC03 consumables (potions, food, poisons)LPC04 crafting & collectibles (style materials, upgrade items)Each module has its own `db.data` table, where the key is `itemKey` (format: `”SERVER:ITEM_ID:CP:QUALITY”`) and the value is a compressed string containing prices for each source. Compression is handled by `LPC_Cache:SerializeItemData` / `DeserializeItemData`.3. Fetching prices from sourcesTTC `TamrielTradeCentrePrice:GetPriceInfo(link)`MM `MasterMerchant:itemStats(link, false)`ATT `ArkadiusTradeTools.Modules.Sales:GetAveragePricePerItem(link, fromTimeStamp)`ESO-Hub `LibEsoHubPrices.GetSimpleItemPrice(link)`UESP custom function `LPC_Utils:GetUESP(link)` (parses the `uespLog.SalesPrices` structure)All calls are wrapped in `pcall` for safety. Prices are stored with a timestamp and can be filtered by age (`MaxPriceAgeDays`).4. Queue & scanning systemLPC_Scanner manages the queue of items to process (`pendingItems`). Each item is unique (by `itemKey`).LPC_Extensions extends scanning with IIfA, guild store, context menus and chat links.LPC_Calc calculates weighted averages and formats prices for display.LPC_PriceOverride overrides UI prices (uses `SecurePostHook` on inventory list `setupCallback` and modifies `slotData.lpcValue` for sorting).5. Adding a custom price sourceTo add a new price source:Add a fetching function in `LPC_Utils.lua` (template: `GetXXX(link)`).Add entries in `LPC.db` (e.g. `UseXXXPrice`, `Weight_XXX`).In `LPC_Scanner:ProcessNextPendingItem()` add a conditional block that calls your new function and saves the price using `LPC_Cache:SetPrice(…)`.Update `LPC_Calc` to include the new source in tooltips and the weighted average.6. IIfA integrationIf `IIfA` is installed and the `AutoScanIIfA` option is enabled, the library will read `IIfA:GetInventoryDB()` after login and add all account‑wide items to the scanning queue. This greatly speeds up database population.7. UI price override (inventory & guild store)Override works on two levels:Display `SecurePostHook` on the `setupCallback` of every inventory list replaces the text of the `SellPriceText` control.Sorting the default `stackSellPrice` sort key is replaced by `lpcValue` in the sort headers. `lpcValue` is added to each slot via a hook in `ZO_SharedInventoryManager.CreateOrUpdateSlotData` (preserving the original function).8. Example usage in another addonlocal price = LPC_GetPrice(itemLink)if price then d(“Average price: ” .. price)else d(“No price data for this item”)end📜 LICENSE & ACKNOWLEDGEMENTSThis library is released under the MIT license. The source code is open and available on GitHub (link in authors profile).Special thanks to the authors of the trading addons who provided APIs: Tamriel Trade Centre (Mladen90), Master Merchant (Sharlikran, Dan Stone, Philgo68), Arkadius Trade Tools (Aldanga, Arkadius1), ESO-Hub (Seerah, Ayantir), UESP (uesp).Many thanks to DeepSeek for coding assistance and optimisation.If you wish to support development, you can send an in‑game donation to @HyboremInfernal or use the Donate button in LPC settings.
Change Log:——————–Version 4.62: ~Masteroshi430- Bumped api to 101049- Did the Seals of endeavor enum change to seals- Added Tome Points- Added Caches of Tome Point – Added Premium Tome Tokens- Added Trade BarsNote: The new options haven’t been translated and will display in English for other languagesDescription:——————–This is just a temporary LootDrop update while waiting for Phinix to update LootDrop Reborn.Read the changelog section.
Everything you need to know about Delta, the new morally gray robot companion introduced in the Starfield Terran Armada DLC.
Here is a complete breakdown of every new feature, update, and piece of content coming to Starfield in 2026, including the Free Lanes update, the Terran Armada DLC, and the PlayStation 5 launch.