Server.Regions.GuardedRegion.OnBeginSpellCast C# (CSharp) Méthode

OnBeginSpellCast() public méthode

public OnBeginSpellCast ( Server.Mobile m, ISpell s ) : bool
m Server.Mobile
s ISpell
Résultat bool
		public override bool OnBeginSpellCast( Mobile m, ISpell s )
		{
			if ( !IsDisabled() && !s.OnCastInTown( this ) )
			{
				m.SendLocalizedMessage( 500946 ); // You cannot cast this in town!
				return false;
			}

			return base.OnBeginSpellCast( m, s );
		}