Server.Mobiles.PlayerMobile.MutateSpeech C# (CSharp) Méthode

MutateSpeech() public méthode

public MutateSpeech ( List hears, string &text, object &context ) : bool
hears List
text string
context object
Résultat bool
        public override bool MutateSpeech(List<Mobile> hears, ref string text, ref object context)
        {
            if (Alive)
                return false;

            return base.MutateSpeech(hears, ref text, ref context);
        }