123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- * 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 com.l2jserver.gameserver.network.clientpackets;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.communitybbs.CommunityBoard;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.communityserver.CommunityServerThread;
- import com.l2jserver.gameserver.network.communityserver.writepackets.RequestCommunityBoardWrite;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /**
- * Format SSSSSS
- * @author -Wooden-
- *
- */
- public final class RequestBBSwrite extends L2GameClientPacket
- {
- private static final String _C__22_REQUESTBBSWRITE = "[C] 22 RequestBBSwrite";
- private String _url;
- private String _arg1;
- private String _arg2;
- private String _arg3;
- private String _arg4;
- private String _arg5;
-
- @Override
- protected final void readImpl()
- {
- _url = readS();
- _arg1 = readS();
- _arg2 = readS();
- _arg3 = readS();
- _arg4 = readS();
- _arg5 = readS();
- }
-
- @Override
- protected final void runImpl()
- {
- if (Config.ENABLE_COMMUNITY_BOARD)
- {
- L2PcInstance activeChar = getClient().getActiveChar();
-
- if (activeChar == null)
- return;
-
- if (!CommunityServerThread.getInstance().sendPacket(new RequestCommunityBoardWrite(activeChar.getObjectId(), _url,_arg1,_arg2, _arg3, _arg4, _arg5)))
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.CB_OFFLINE));
- }
- else
- CommunityBoard.getInstance().handleWriteCommands(getClient(),_url,_arg1,_arg2, _arg3, _arg4, _arg5);
- }
-
- @Override
- public final String getType()
- {
- return _C__22_REQUESTBBSWRITE;
- }
- }
|