/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see .
*/
package net.sf.l2j.gameserver.communitybbs.Manager;
import net.sf.l2j.Config;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.serverpackets.ShowBoard;
public class AdminBBSManager extends BaseBBSManager
{
private static AdminBBSManager _instance = null;
/**
* @return
*/
public static AdminBBSManager getInstance()
{
if(_instance == null)
{
_instance = new AdminBBSManager();
}
return _instance;
}
/* (non-Javadoc)
* @see net.sf.l2j.gameserver.communitybbs.Manager.BaseBBSManager#parsecmd(java.lang.String, net.sf.l2j.gameserver.model.actor.instance.L2PcInstance)
*/
@Override
public void parsecmd(String command, L2PcInstance activeChar)
{
if(activeChar.getAccessLevel() < Config.GM_ACCESSLEVEL)
{
return;
}
if (command.startsWith("admin_bbs"))
{
separateAndSend("
This Page is only an exemple :)
command="+command+"",activeChar);
}
else
{
ShowBoard sb = new ShowBoard("
the command: "+command+" is not implemented yet
","101");
activeChar.sendPacket(sb);
activeChar.sendPacket(new ShowBoard(null,"102"));
activeChar.sendPacket(new ShowBoard(null,"103"));
}
}
/**
* @param activeChar
* @param file
*/
/* (non-Javadoc)
* @see net.sf.l2j.gameserver.communitybbs.Manager.BaseBBSManager#parsewrite(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, net.sf.l2j.gameserver.model.actor.instance.L2PcInstance)
*/
@Override
public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
{
if(activeChar.getAccessLevel() < Config.GM_ACCESSLEVEL)
{
return;
}
}
}