This may differ some depending on which version of daat99 your using but something along the lines of:

in GoldShower.cs
at the top add
using daat99;

then find
Gold g = new Gold(m_MinAmount, m_MaxAmount);

and change it to
Daat99Tokens g = new Daat99Tokens(m_MinAmount, m_MaxAmount);
 
Back