public DeleteTimer(Beggar b, Mobile m) : base(TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(1)) { m_beggar = b; m_giver = m; ticks = 0; m_beggar.Done = true; // stick a fork in 'im m_beggar.Say("With {0} gold, I dont have to wander the streets anymore!", m_beggar.TotalGold); Priority = TimerPriority.TwoFiftyMS; }
public SpamTimer(Beggar b) : base(TimeSpan.FromSeconds(8)) { m_beggar = b; Priority = TimerPriority.OneSecond; }