Package com.l2jfrozen.gameserver.communitybbs.Manager

Examples of com.l2jfrozen.gameserver.communitybbs.Manager.ForumsBBSManager


    if(_forum == null)
    {
      if(_level >= 2)
      {
        final ForumsBBSManager fbbsm = ForumsBBSManager.getInstance();
        final Forum clanRootForum = fbbsm.getForumByName("ClanRoot");
        if (clanRootForum != null)
        {
          _forum = clanRootForum.getChildByName(_name);
          if(_forum == null)
          {
            _forum = fbbsm.createNewForum(_name, clanRootForum, Forum.CLAN, Forum.CLANMEMBERONLY, getClanId());
          }
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.communitybbs.Manager.ForumsBBSManager

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.