Package fr.neatmonster.nocheatplus.checks.chat.analysis.engine

Examples of fr.neatmonster.nocheatplus.checks.chat.analysis.engine.EnginePlayerConfig


       
       
        textCheck = config.getBoolean(ConfPaths.CHAT_TEXT_CHECK);
      textGlobalCheck = config.getBoolean(ConfPaths.CHAT_TEXT_GL_CHECK, true);
      textPlayerCheck = config.getBoolean(ConfPaths.CHAT_TEXT_PP_CHECK, true);
        textEnginePlayerConfig = new EnginePlayerConfig(config);
        textFreqNormMin = (float) config.getDouble(ConfPaths.CHAT_TEXT_FREQ_NORM_MIN);
        textFreqNormFactor = (float) config.getDouble(ConfPaths.CHAT_TEXT_FREQ_NORM_FACTOR);
        textFreqNormWeight = (float) config.getDouble(ConfPaths.CHAT_TEXT_FREQ_NORM_WEIGHT);
        textFreqShortTermFactor = (float) config.getDouble(ConfPaths.CHAT_TEXT_FREQ_SHORTTERM_FACTOR);
        textFreqShortTermWeight = (float) config.getDouble(ConfPaths.CHAT_TEXT_FREQ_SHORTTERM_WEIGHT);
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.checks.chat.analysis.engine.EnginePlayerConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.