Skip to main content

Loot Tables

Loot tables are used to provide items to Inventories, whether it's the players, a trader or a blueprint.

note

If you are coming from an older version of inventory, you will have used a DefaultItems array. This has been replaced by the Loot Tables for more advanced flexibility.

Loot Table Creation

To create a new loot table, Right Click in the Content Drawer -> Miscellaneous -> Data Table.

loot-table-creation.webp

Select the LootTableRow data structure.

loot-table-row.webp

You can now populate all the items the Loot Table needs to use.

loot-table-empty.webp

LootTableRow Properties

Variable NameTypeDescription
ItemsToGrantTArray<FItemWithQuantity>The items to grant if this row is given to the inventory
ItemCollectionsToGrantTArray<TObjectPtr<UItemCollection>>Item collections to grant
SubTablesToRollTArray<FLootTableRoll>Subloot tables that this loot table will roll
ChancefloatThe chance this row will actually be given if selected

FItemWithQuantity Properties

Variable NameType
ItemTSoftClassPtr<UNarrativeItem>
Quantityint32

UItemCollection Properties

Variable NameType
ItemsTArray<FItemWithQuantity>

FLootTableRoll Properties

Variable NameType
TableToRollTObjectPtr<UDataTable>
NumRollsint32
Chancefloat

Adding items

Once you have populated your loot table with items, you can assign the Loot Table to the Inventory.

Select the inventory component and add as many Loot Tables as you wish to run through for the inventory.

inventory-loot-table-variable.webp

Running the loot table

You now have to decide when you want the loot table to be added to the Inventory.

For some inventories, simply applying the loot table on Event Begin Play will be fine.

To apply the loot table, drag in your Inventory component and call the Give Default Items function.

Saving / Loading

However, for inventories that need to be saved and loaded, it will be common practice to only apply the loot table if it is not loading.

A branch or a check can be added. An example of this is displayed below.