Пример #1
0
 public EntryTimer(BaseCreature entry, ListType type, TreeOfKnowledge owner) : base(TimeSpan.FromMinutes(5.0))
 {
     m_Entry    = entry;
     m_ListType = type;
     m_Owner    = owner;
     Priority   = TimerPriority.TwoFiftyMS;
 }
Пример #2
0
			public EntryTimer( BaseCreature entry, ListType type, TreeOfKnowledge owner ) : base( TimeSpan.FromMinutes( 5.0 ) )
			{
				m_Entry = entry;
				m_ListType = type;
				m_Owner = owner;
				Priority = TimerPriority.TwoFiftyMS;
			}
Пример #3
0
			public DrainTimer( TreeOfKnowledge owner ) : base( TimeSpan.FromSeconds( 1.0 ), TimeSpan.FromSeconds( 1.0 ) )
			{
				m_Owner = owner;
				Priority = TimerPriority.TwoFiftyMS;
			}
Пример #4
0
 public DrainTimer(TreeOfKnowledge owner)
     : base(TimeSpan.FromSeconds(1.0), TimeSpan.FromSeconds(1.0))
 {
     m_Owner  = owner;
     Priority = TimerPriority.TwoFiftyMS;
 }