public InternalTimer( Mobile from, Mobile to, int count, FiftyNeedlesSpell spell ) : base( TimeSpan.FromMilliseconds( 50.0 ), TimeSpan.FromMilliseconds( 50.0 ) ) { m_From = from; m_To = to; m_Spell = spell; //I'm claiming fifty, but its more like 35 in 1.75 secounds. ;) if ( count > 35 ) count = 35; m_MaxCount = count; }
public InternalTimer(Mobile from, Mobile to, int count, FiftyNeedlesSpell spell) : base(TimeSpan.FromMilliseconds(50.0), TimeSpan.FromMilliseconds(50.0)) { m_From = from; m_To = to; m_Spell = spell; //I'm claiming fifty, but its more like 35 in 1.75 secounds. ;) if (count > 35) { count = 35; } m_MaxCount = count; }