コード例 #1
0
            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;
            }
コード例 #2
0
ファイル: Beggar.cs プロジェクト: FreeReign/imaginenation
            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;
            }
コード例 #3
0
ファイル: Beggar.cs プロジェクト: FreeReign/imaginenation
 public SpamTimer(Beggar b)
     : base(TimeSpan.FromSeconds(8))
 {
     m_beggar = b;
     Priority = TimerPriority.OneSecond;
 }
コード例 #4
0
 public SpamTimer(Beggar b)
     : base(TimeSpan.FromSeconds(8))
 {
     m_beggar = b;
     Priority = TimerPriority.OneSecond;
 }