12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- * 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 <http://www.gnu.org/licenses/>.
- */
- 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("<html><body><br><br><center>This Page is only an exemple :)<br><br>command="+command+"</center></body></html>",activeChar);
- }
- else
- {
- ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: "+command+" is not implemented yet</center><br><br></body></html>","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;
- }
- }
- }
|