Ejemplo n.º 1
0
 public static void AddAttendant(Mobile owner, PersonalAttendant attendant)
 {
     if (owner != null)
     {
         m_Table[owner] = attendant;
     }
 }
Ejemplo n.º 2
0
            public InternalTimer(PersonalAttendant attendant, TimeSpan delay)
                : base(delay, delay)
            {
                m_Attendant = attendant;

                Priority = TimerPriority.FiveSeconds;
            }
Ejemplo n.º 3
0
		public AttendantUseEntry( PersonalAttendant attendant, int title ) : base( title )
		{
			m_Attendant = attendant;
		}
Ejemplo n.º 4
0
		public AttendantDismissEntry( PersonalAttendant attendant ) : base( 6228 )
		{
			m_Attendant = attendant;
		}
Ejemplo n.º 5
0
		public AttendantStopEntry( PersonalAttendant attendant ) : base( 6112 )
		{
			m_Attendant = attendant;
		}
Ejemplo n.º 6
0
		public AttendantFollowEntry( PersonalAttendant attendant ) : base( 6108 )
		{
			m_Attendant = attendant;
		}
Ejemplo n.º 7
0
			public InternalTimer( PersonalAttendant attendant, TimeSpan delay ) : base( delay, delay )
			{
				m_Attendant = attendant;

				Priority = TimerPriority.FiveSeconds;
			}
Ejemplo n.º 8
0
		public static void AddAttendant( Mobile owner, PersonalAttendant attendant )
		{
			if ( owner != null )
				m_Table[ owner ] = attendant;
		}