public static void DoHumanReveal(BaseCreature mobile)
        {
            foreach (Mobile m in mobile.GetMobilesInRange(10))
            {
                if (m != null && m.Hidden && m.AccessLevel == AccessLevel.Player)
                {
                    m.Hidden = false;
                }
            }

            if (s_HumanTalked == false)
            {
                s_HumanTalked = true;
                SayHumanRandom(humansay, mobile);
                HumanSpamTimer t = new HumanSpamTimer();
                t.Start();
            }
        }
		public static void DoHumanReveal(BaseCreature mobile)
		{
			foreach (Mobile m in mobile.GetMobilesInRange( 10 ) )
				if (m != null && m.Hidden && m.AccessLevel == AccessLevel.Player)
					m.Hidden = false;

			if( s_HumanTalked == false ) 
			{ 
				s_HumanTalked = true; 
				SayHumanRandom( humansay, mobile ); 
				HumanSpamTimer t = new HumanSpamTimer(); 
				t.Start(); 
			} 
		}