InventoryDatabaseV2.GetBestCurrencySet
Declaration#
public virtual Dictionary<GDTKCurrency, Int32> GetBestCurrencySet(Int32 value, bool premium)Parameters#
| Name | Description |
|---|---|
| value | Value to get combination for |
| premium | Use premium currencies |
Description#
Gets the best combination of currencies for the supplied value
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example() { InventoryDatabaseV2.instance.GetBestCurrencySet(1234); }
}