public override void OnSpeech(SpeechEventArgs e)
{
if (SpeechLog.Enabled && NetState != null)
{
if (m_SpeechLog == null)
{
m_SpeechLog = new SpeechLog();
}
m_SpeechLog.Add(e.Mobile, e.Speech);
}
}
public override void OnSaid(SpeechEventArgs e)
{
if (m_TempSquelched)
{
if (Core.ML)
{
SendLocalizedMessage(500168); // You can not say anything, you have been muted.
}
else
{
SendMessage("You can not say anything, you have been squelched."); //Cliloc ITSELF changed during ML.
}
e.Blocked = true;
}
else
{
base.OnSaid(e);
}
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.