Equipment

How to save and load equipment.

circle-info

Relevant Inventool namespaces:

  • Esper.Inventool

  • Esper.Inventool.DataManagement

Saving

Use the ToSavable equipment method to convert the data into a savable format.

SavableSlotList savableEquipment = myEquipment.ToSavable();

Use an external save system to save this object. See Example.

Loading

Use the FromSavable equipment method and pass the SavableSlotList object to deconvert and set the data.

myEquipment.FromSavable(savableEquipment);

Use an external save system to load this object. See Example.

Last updated