Can't. Its being used by:
private class InternalTimer : Timer
{
private BaseTamer m_Item;
private Mobile m_Tamer;
private BaseCreature m_Creature;
private int m_MaxCount;
private int m_Count;
public InternalTimer( BaseTamer item, Mobile tamer, BaseCreature creature, int count ) : base( TimeSpan.FromSeconds( 3.0 ), TimeSpan.FromSeconds( 3.0 ), count )
{
m_Tamer = tamer;
m_Creature = creature;
m_MaxCount = count;
m_Item = item;
}
[doublepost=1511438757][/doublepost]Ok so I removed m_Item from *everything* and now he tames on double click. I just need help with him being untamed by the timer;.