Package in.mDev.MiracleM4n.mChatSuite.api

Examples of in.mDev.MiracleM4n.mChatSuite.api.API


     */
    public void addSetMChatClanTag(Player player, String value)
    {
        if(mchat != null)
        {
            API api = mchat.getAPI();

            api.addPlayerVar(player.getName(), "clan", value);
        }
    }
View Full Code Here


     */
    public void clearSetMChatClanTag(Player player)
    {
        if(mchat != null)
        {
            API api = mchat.getAPI();

            api.addPlayerVar(player.getName(), "clan", "");
        }
    }
View Full Code Here

TOP

Related Classes of in.mDev.MiracleM4n.mChatSuite.api.API

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.