This is the AMP version of this page.
If you want to load the real page instead, click this text.

Help! How to write the hook for this

xLots

Platinian
i want to make a coins and gems mod for a game and what i found on the dump is a bit different from versions before

i have this inside Wallet class
private readonly CurrencyMap<int> _currencyAmount; // 0x60
and this is what i think hold the coins and gems
class CurrencyMap<T>
public T Coins; // 0x0
public T Gems; // 0x0
public T Crown; // 0x0
public T Skulls; // 0x0
public T Shades; // 0x0
public T Merchandise; // 0x0
private Dictionary<CurrencyType, T> _map; // 0x0

how do i write the hook?